Skip to content

Commit

Permalink
Fixed incorrect controller morph names
Browse files Browse the repository at this point in the history
Controller morphs were not working due an error when naming them
  • Loading branch information
Manashiku authored May 22, 2023
1 parent fd1a848 commit 946de56
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions genshin_header.fxsub
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ float model_g : CONTROLOBJECT < string name = "(self)"; string ite
float model_b : CONTROLOBJECT < string name = "(self)"; string item = "model_b";>;
//------------ controller morphs ------------//
float cont_shadow_dark : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_dark"; >;
float cont_shadow_bright : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_dark"; >;
float cont_shadow_r : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_dark"; >;
float cont_shadow_g : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_dark"; >;
float cont_shadow_b : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_dark"; >;
float cont_shadow_bright : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_bright"; >;
float cont_shadow_r : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_r"; >;
float cont_shadow_g : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_g"; >;
float cont_shadow_b : CONTROLOBJECT < string name = "Controller.pmx"; string item = "shadow_b"; >;
float cont_specular_dark : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_dark"; >;
float cont_specular_bright : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_dark"; >;
float cont_specular_r : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_dark"; >;
float cont_specular_g : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_dark"; >;
float cont_specular_b : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_dark"; >;
float cont_specular_bright : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_bright"; >;
float cont_specular_r : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_r"; >;
float cont_specular_g : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_g"; >;
float cont_specular_b : CONTROLOBJECT < string name = "Controller.pmx"; string item = "specular_b"; >;
float cont_dark : CONTROLOBJECT < string name = "Controller.pmx"; string item = "color_dark";>;
float cont_bright : CONTROLOBJECT < string name = "Controller.pmx"; string item = "color_bright";>;
float cont_r : CONTROLOBJECT < string name = "Controller.pmx"; string item = "color_r";>;
Expand Down

0 comments on commit 946de56

Please sign in to comment.