mirror of https://github.com/AxioDL/metaforce.git
Minor indentation fix
This commit is contained in:
parent
6aecd05314
commit
f5cfbc25b6
|
@ -199,8 +199,7 @@ class SACTAction_load(bpy.types.Operator):
|
||||||
def register():
|
def register():
|
||||||
bpy.types.Action.hecl_fps = bpy.props.IntProperty(name="HECL Actor Sub-action Frame-rate",
|
bpy.types.Action.hecl_fps = bpy.props.IntProperty(name="HECL Actor Sub-action Frame-rate",
|
||||||
description="Frame-rate at which action is authored; to be interpolated at 60-fps by runtime",
|
description="Frame-rate at which action is authored; to be interpolated at 60-fps by runtime",
|
||||||
min=1, max=60, default=30,
|
min=1, max=60, default=30, update=active_action_update)
|
||||||
update=active_action_update)
|
|
||||||
bpy.utils.register_class(SACTAction)
|
bpy.utils.register_class(SACTAction)
|
||||||
bpy.utils.register_class(SACTAction_add)
|
bpy.utils.register_class(SACTAction_add)
|
||||||
bpy.utils.register_class(SACTAction_load)
|
bpy.utils.register_class(SACTAction_load)
|
||||||
|
|
Loading…
Reference in New Issue