@@ -69,8 +69,9 @@ def import_material_alpha_controller(self, b_material, n_material):
69
69
NifLog .info ("Importing alpha controller" )
70
70
71
71
b_mat_action = self .create_action (b_material , "MaterialAction" )
72
- interp = self .get_b_interp_from_n_interp (n_ctrl .data .data .interpolation )
73
- times , keys = self .get_keys_values (n_ctrl .data .data .keys )
72
+ n_ctrl_data = self .get_controller_data (n_ctrl )
73
+ interp = self .get_b_interp_from_n_interp (n_ctrl_data .interpolation )
74
+ times , keys = self .get_keys_values (n_ctrl_data .keys )
74
75
# key needs to be RGB due to current representation in blender
75
76
keys = [(v , v , v ) for v in keys ]
76
77
self .add_keys (b_mat_action , "niftools.emissive_alpha" , range (3 ), n_ctrl .flags , times , keys , interp )
@@ -85,8 +86,9 @@ def import_material_color_controller(self, b_material, n_material, b_channel, n_
85
86
return
86
87
NifLog .info (f"Importing material color controller for target color { n_target_color } into blender channel { b_channel } " )
87
88
b_mat_action = self .create_action (b_material , "MaterialAction" )
88
- interp = self .get_b_interp_from_n_interp (n_ctrl .data .data .interpolation )
89
- times , keys = self .get_keys_values (n_ctrl .data .data .keys )
89
+ n_ctrl_data = self .get_controller_data (n_ctrl )
90
+ interp = self .get_b_interp_from_n_interp (n_ctrl_data .interpolation )
91
+ times , keys = self .get_keys_values (n_ctrl_data .keys )
90
92
self .add_keys (b_mat_action , b_channel , range (3 ), n_ctrl .flags , times , keys , interp )
91
93
92
94
def import_material_uv_controller (self , b_material , n_geom ):
@@ -97,7 +99,8 @@ def import_material_uv_controller(self, b_material, n_geom):
97
99
return
98
100
NifLog .info ("Importing UV controller" )
99
101
100
- if not any (n_uvgroup .keys for n_uvgroup in n_ctrl .data .uv_groups ):
102
+ n_ctrl_data = self .get_controller_data (n_ctrl )
103
+ if not any (n_uvgroup .keys for n_uvgroup in n_ctrl_data .uv_groups ):
101
104
return
102
105
103
106
b_mat_action = self .create_action (b_material .node_tree , "MaterialAction" )
0 commit comments