Hello,
We can offer the following solutions:
1. Use the following command:
Metashape.app.settings.setValue("BuildModel/ooc_surface_blow_up",0.95)
Metashape.app.settings.setValue("BuildModel/ooc_surface_blow_off",0.95)
2. Or try using tasks, as an example below:
chunk = Metashape.app.document.chunk
task = Metashape.Tasks.BuildModel()
task["ooc_surface_blow_up"] = "0.95"
task["ooc_surface_blow_off"] = "0.95"
[i]#add other paramerters for building model[/i]
task.apply(chunk)