@@ -11,7 +11,7 @@ class SIMLOADER_scene_property(bpy.types.PropertyGroup):
11
11
fileseq : bpy .props .EnumProperty (
12
12
name = "File Sequences" ,
13
13
description = "Please choose the file sequences you want" ,
14
- items = callback_fileseq ,
14
+ items = item_fileseq ,
15
15
)
16
16
use_pattern : bpy .props .BoolProperty (name = 'Use pattern' ,
17
17
description = "whether or not to use manually typed pattern" ,
@@ -30,14 +30,15 @@ class SIMLOADER_scene_property(bpy.types.PropertyGroup):
30
30
poll = poll_material ,
31
31
)
32
32
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 )
36
36
37
37
38
38
class SIMLOADER_obj_property (bpy .types .PropertyGroup ):
39
39
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" )
41
42
use_advance : bpy .props .BoolProperty (default = False )
42
43
script_name : bpy .props .StringProperty ()
43
44
use_relative : bpy .props .BoolProperty (default = False )
@@ -46,4 +47,4 @@ class SIMLOADER_obj_property(bpy.types.PropertyGroup):
46
47
47
48
# set this property for mesh, not object (maybe change later?)
48
49
class 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