another limit for minimum z of operation

pull/4/head
vilda.novak@gmail.com 2013-07-27 17:43:55 +00:00
rodzic b54a7a1350
commit aa16797a12
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -230,7 +230,7 @@ class camOperation(bpy.types.PropertyGroup):
retract_height = bpy.props.FloatProperty(name = 'Retract arc height', default=0.001,min=0.00000, max=100, precision=PRECISION, unit="LENGTH")
minz_from_ob = bpy.props.BoolProperty(name="Depth from object",description="Operation depth from object", default=True)
minz = bpy.props.FloatProperty(name="Operation depth", default=-0.01, min=-32, max=0,precision=PRECISION, unit="LENGTH")#this is input minz. True minimum z can be something else, depending on material e.t.c.
minz = bpy.props.FloatProperty(name="Operation depth", default=-0.01, min=-3, max=0,precision=PRECISION, unit="LENGTH")#this is input minz. True minimum z can be something else, depending on material e.t.c.
source_image_scale_z=bpy.props.FloatProperty(name="Image source depth scale", default=0.01, min=-1, max=1,precision=PRECISION, unit="LENGTH", update = updateZbufferImage)
source_image_size_x=bpy.props.FloatProperty(name="Image source x size", default=0.1, min=-10, max=10,precision=PRECISION, unit="LENGTH", update = updateZbufferImage)