summaryrefslogtreecommitdiffstats
path: root/GUI
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2023-09-01 00:48:20 -0700
committeryum <yum.food.vr@gmail.com>2023-09-01 00:48:20 -0700
commit833ef96f677a60197abb417651ac306820e225f0 (patch)
tree40fe147399558d6452caba158b662902e37ea7c0 /GUI
parentcb44e4744ac82d1d35547d12254cfea09dc63fae (diff)
Add `Enable phonemes` toggle to radial menu
Also: * Fully scrub AudioSource references from prefab when not using phonemes. * Disable net sync on phoneme params when not using them. When not synced, they don't count against the total memory limit. * Use config file in generate_params.py
Diffstat (limited to 'GUI')
-rw-r--r--GUI/GUI/GUI/PythonWrapper.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/GUI/GUI/GUI/PythonWrapper.cpp b/GUI/GUI/GUI/PythonWrapper.cpp
index 1b041e3..d98a5d4 100644
--- a/GUI/GUI/GUI/PythonWrapper.cpp
+++ b/GUI/GUI/GUI/PythonWrapper.cpp
@@ -803,8 +803,7 @@ bool PythonWrapper::GenerateAnimator(
if (!InvokeWithArgs({ generate_params_path,
"--old_params", Quote(config.params_path),
"--new_params", Quote(tastt_params_path),
- "--chars_per_sync", std::to_string(config.chars_per_sync),
- "--bytes_per_char", std::to_string(config.bytes_per_char) },
+ "--config", Quote(config_path) },
"Failed to generate avatar parameters", out)) {
return false;
}