diff options
| author | yum <yum.food.vr@gmail.com> | 2023-08-10 11:10:19 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2023-08-10 13:51:33 -0700 |
| commit | 4337cb33939e43af1ed479bf87cb9390bcbae8b1 (patch) | |
| tree | 90c334f08556ee35af60f5d803fd7410e53a625f /GUI | |
| parent | fef5887fe4aae8d4a9dc344721426237368a08e5 (diff) | |
Add show/hide animation for ray-marched custom chatbox
* Fix mirror behavior for ray-marched chatbox
Diffstat (limited to 'GUI')
| -rw-r--r-- | GUI/GUI/GUI/PythonWrapper.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/GUI/GUI/GUI/PythonWrapper.cpp b/GUI/GUI/GUI/PythonWrapper.cpp index 2b6443a..1f6f3dc 100644 --- a/GUI/GUI/GUI/PythonWrapper.cpp +++ b/GUI/GUI/GUI/PythonWrapper.cpp @@ -549,8 +549,6 @@ bool PythonWrapper::GenerateAnimator( tastt_generated_dir_path / "FX0.controller"; std::filesystem::path tastt_fx1_path = tastt_generated_dir_path / "FX1.controller"; - std::filesystem::path tastt_fx2_path = - tastt_generated_dir_path / "FX2.controller"; // This is the final animator. std::filesystem::path tastt_animator_path = tastt_generated_dir_path / unity_animator_generated_name; @@ -772,8 +770,8 @@ bool PythonWrapper::GenerateAnimator( Log(out, "Merging with user animator... "); if (!InvokeWithArgs({ libunity_path, "merge", "--fx0", Quote(config.fx_path), - "--fx1", Quote(tastt_fx1_path), - "--fx_dest", Quote(tastt_fx2_path), }, + "--fx1", Quote(tastt_fx0_path), + "--fx_dest", Quote(tastt_fx1_path), }, "Failed to merge animators", out)) { return false; } @@ -781,7 +779,7 @@ bool PythonWrapper::GenerateAnimator( { Log(out, "Setting noop animations... "); if (!InvokeWithArgs({ libunity_path, "set_noop_anim", - "--fx0", Quote(tastt_fx2_path), + "--fx0", Quote(tastt_fx1_path), "--fx_dest", Quote(tastt_animator_path), "--gen_anim_dir", Quote(tastt_animations_path), "--guid_map", Quote(guid_map_path), }, |
