1
1
from bseq .utils import refresh_obj
2
- from .operators import BSEQ_OT_load , BSEQ_OT_edit , BSEQ_OT_resetpt , BSEQ_OT_resetmesh , BSEQ_OT_resetins , BSEQ_OT_set_as_split_norm , BSEQ_OT_remove_split_norm , BSEQ_OT_disable_selected , BSEQ_OT_enable_selected , BSEQ_OT_refresh_seq , BSEQ_OT_disable_all , BSEQ_OT_enable_all , BSEQ_OT_refresh_sequences , BSEQ_OT_set_start_end_frames , WM_OT_batchSequences , WM_OT_batchSequences_Settings , WM_OT_MeshioObject
2
+ from .operators import BSEQ_OT_load , BSEQ_OT_edit , BSEQ_OT_resetpt , BSEQ_OT_resetmesh , BSEQ_OT_resetins , BSEQ_OT_set_as_split_norm , BSEQ_OT_remove_split_norm , BSEQ_OT_disable_selected , BSEQ_OT_enable_selected , BSEQ_OT_refresh_seq , BSEQ_OT_disable_all , BSEQ_OT_enable_all , BSEQ_OT_refresh_sequences , BSEQ_OT_set_start_end_frames , WM_OT_batchSequences , WM_OT_MeshioObject
3
3
from .properties import BSEQ_scene_property , BSEQ_obj_property , BSEQ_mesh_property
4
- from .panels import BSEQ_UL_Obj_List , BSEQ_List_Panel , BSEQ_Settings , BSEQ_Import , BSEQ_Import_Child1 , BSEQ_Import_Child2 , BSEQ_Globals_Panel , BSEQ_Advanced_Panel , BSEQ_Templates , BSEQ_UL_Att_List , draw_template
4
+ from .panels import BSEQ_UL_Obj_List , BSEQ_List_Panel , BSEQ_Settings , BSEQ_Import , BSEQ_Templates , BSEQ_UL_Att_List , draw_template
5
5
from .messenger import subscribe_to_selected , unsubscribe_to_selected
6
6
import bpy
7
7
from bpy .app .handlers import persistent
12
12
@persistent
13
13
def BSEQ_initialize (scene ):
14
14
if update_obj not in bpy .app .handlers .frame_change_post :
15
- bpy .app .handlers .frame_change_post .append (auto_refresh_active )
16
- bpy .app .handlers .frame_change_post .append (auto_refresh_all )
15
+ bpy .app .handlers .frame_change_post .append (auto_refresh )
17
16
bpy .app .handlers .frame_change_post .append (update_obj )
18
17
subscribe_to_selected ()
19
18
if print_information not in bpy .app .handlers .render_init :
@@ -26,15 +25,11 @@ def BSEQ_initialize(scene):
26
25
"BSEQ_obj_property" ,
27
26
"BSEQ_initialize" ,
28
27
"BSEQ_Import" ,
29
- "BSEQ_Import_Child1" ,
30
- "BSEQ_Import_Child2" ,
31
- "BSEQ_Globals_Panel" ,
32
28
"BSEQ_List_Panel" ,
33
29
"BSEQ_UL_Obj_List" ,
34
30
"BSEQ_scene_property" ,
35
31
"BSEQ_Templates" ,
36
32
"BSEQ_Settings" ,
37
- "BSEQ_Advanced_Panel" ,
38
33
"BSEQ_UL_Att_List" ,
39
34
"subscribe_to_selected" ,
40
35
"BSEQ_OT_resetpt" ,
@@ -53,6 +48,5 @@ def BSEQ_initialize(scene):
53
48
"BSEQ_OT_refresh_sequences" ,
54
49
"BSEQ_OT_set_start_end_frames" ,
55
50
"WM_OT_batchSequences" ,
56
- "WM_OT_batchSequences_Settings" ,
57
51
"WM_OT_MeshioObject"
58
52
]
0 commit comments