diff options
| author | yum <yum.food.vr@gmail.com> | 2022-10-24 22:08:06 -0700 |
|---|---|---|
| committer | yum <yum.food.vr@gmail.com> | 2022-10-24 22:08:06 -0700 |
| commit | 08655f96dc798e3e129058a5e97c5aa7ff96e798 (patch) | |
| tree | b2543852ec52fec22319f562a737e48e95681b37 /generate_params.py | |
| parent | 4b0d262f4630538cc04f6e8bda407fe3f3ba213b (diff) | |
STT now beeps when it shows text, and can be locked to world
Empty cells are excluded from the beeping behavior. Note: I have not
checked in the prefab with the audio source yet.
* libtastt gen_fx now adds 3 toggles to FX layer: toggle board, toggle world
lock, toggle beep sound
* libunity guid_map can now append instead of replacing
* TaSTT_Toggle_{On,Off}.anim now use the prefab path, as do generated
animations
Diffstat (limited to 'generate_params.py')
| -rw-r--r-- | generate_params.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/generate_params.py b/generate_params.py index d91e801..782fdb4 100644 --- a/generate_params.py +++ b/generate_params.py @@ -63,6 +63,12 @@ print(generate_utils.replaceMacros(BOOL_PARAM, params)) params["PARAM_NAME"] = generate_utils.getToggleParam() print(generate_utils.replaceMacros(BOOL_PARAM, params)) +params["PARAM_NAME"] = generate_utils.getSpeechNoiseToggleParam() +print(generate_utils.replaceMacros(BOOL_PARAM, params)) + +params["PARAM_NAME"] = generate_utils.getLockWorldParam() +print(generate_utils.replaceMacros(BOOL_PARAM, params)) + for i in range(0, generate_utils.NUM_LAYERS): params["PARAM_NAME"] = generate_utils.getLayerParam(i) print(generate_utils.replaceMacros(INT_PARAM, params)) |
