@@ -11,7 +11,7 @@ class SIMLOADER_scene_property(bpy.types.PropertyGroup):
1111 fileseq : bpy .props .EnumProperty (
1212 name = "File Sequences" ,
1313 description = "Please choose the file sequences you want" ,
14- items = callback_fileseq ,
14+ items = item_fileseq ,
1515 )
1616 use_pattern : bpy .props .BoolProperty (name = 'Use pattern' ,
1717 description = "whether or not to use manually typed pattern" ,
@@ -30,14 +30,15 @@ class SIMLOADER_scene_property(bpy.types.PropertyGroup):
3030 poll = poll_material ,
3131 )
3232
33- print :bpy .props .BoolProperty (name = 'print' ,
34- description = "whether or not to print additional information when rendering" ,
35- default = True )
33+ print : bpy .props .BoolProperty (name = 'print' ,
34+ description = "whether or not to print additional information when rendering" ,
35+ default = True )
3636
3737
3838class SIMLOADER_obj_property (bpy .types .PropertyGroup ):
3939 init : bpy .props .BoolProperty (default = False )
40- enabled : bpy .props .BoolProperty (default = True )
40+ enabled : bpy .props .BoolProperty (default = True ,
41+ description = "When disbaled, the sequence won't be updated at each frame. Enabled by default" )
4142 use_advance : bpy .props .BoolProperty (default = False )
4243 script_name : bpy .props .StringProperty ()
4344 use_relative : bpy .props .BoolProperty (default = False )
@@ -46,4 +47,4 @@ class SIMLOADER_obj_property(bpy.types.PropertyGroup):
4647
4748# set this property for mesh, not object (maybe change later?)
4849class SIMLOADER_mesh_property (bpy .types .PropertyGroup ):
49- split_norm_att_name : bpy .props .StringProperty (default = "" )
50+ split_norm_att_name : bpy .props .StringProperty (default = "" )
0 commit comments