fix typo
This commit is contained in:
parent
654ce39a02
commit
6c00b2cb7b
@ -89,13 +89,14 @@ class FloorUVOperator(bpy.types.Operator):
|
|||||||
return {'FINISHED'}
|
return {'FINISHED'}
|
||||||
|
|
||||||
class SuperAlignOperator(bpy.types.Operator):
|
class SuperAlignOperator(bpy.types.Operator):
|
||||||
|
"""Align object with 3ds Max way"""
|
||||||
bl_idname = "ballance.super_align"
|
bl_idname = "ballance.super_align"
|
||||||
bl_label = "Super Align"
|
bl_label = "Super Align"
|
||||||
bl_options = {'UNDO'}
|
bl_options = {'UNDO'}
|
||||||
|
|
||||||
align_x: bpy.props.BoolProperty(name="X postion")
|
align_x: bpy.props.BoolProperty(name="X position")
|
||||||
align_y: bpy.props.BoolProperty(name="Y postion")
|
align_y: bpy.props.BoolProperty(name="Y position")
|
||||||
align_z: bpy.props.BoolProperty(name="Z postion")
|
align_z: bpy.props.BoolProperty(name="Z position")
|
||||||
|
|
||||||
current_references: bpy.props.EnumProperty(
|
current_references: bpy.props.EnumProperty(
|
||||||
name="Current",
|
name="Current",
|
||||||
@ -141,6 +142,7 @@ class SuperAlignOperator(bpy.types.Operator):
|
|||||||
col.prop(self, "target_references")
|
col.prop(self, "target_references")
|
||||||
|
|
||||||
class ThreeDViewerMenu(bpy.types.Menu):
|
class ThreeDViewerMenu(bpy.types.Menu):
|
||||||
|
"""Ballance related 3D operator"""
|
||||||
bl_label = "Ballance 3D"
|
bl_label = "Ballance 3D"
|
||||||
bl_idname = "OBJECT_MT_ballance3d_menu"
|
bl_idname = "OBJECT_MT_ballance3d_menu"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user