kopia lustrzana https://github.com/vilemduha/blendercam
last moment update - fix, was recursively triggering an update function....
rodzic
908733b3b1
commit
6be713e53d
|
|
@ -195,8 +195,8 @@ def updateBridges(o,context):
|
||||||
|
|
||||||
def updateRest(o,context):
|
def updateRest(o,context):
|
||||||
print('update rest ')
|
print('update rest ')
|
||||||
if o.use_layers:
|
#if o.use_layers:
|
||||||
o.parallel_step_back = False
|
#o.parallel_step_back = False
|
||||||
o.changed=True
|
o.changed=True
|
||||||
|
|
||||||
class camOperation(bpy.types.PropertyGroup):
|
class camOperation(bpy.types.PropertyGroup):
|
||||||
|
|
|
||||||
|
|
@ -166,9 +166,12 @@ class CalculatePath(bpy.types.Operator):
|
||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
if o.computing:
|
if o.computing:
|
||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
o.operator=self
|
o.operator=self
|
||||||
|
|
||||||
|
if o.use_layers:
|
||||||
|
o.parallel_step_back = False
|
||||||
|
|
||||||
utils.getPath(context,o)
|
utils.getPath(context,o)
|
||||||
|
|
||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
|
||||||
Ładowanie…
Reference in New Issue