[Update] Config Page: VR Tab. x,y,z pos. ui_scalingのmin maxなど設定値を変数化、ui_config.js上で設定可能に。

This commit is contained in:
Sakamoto Shiina
2024-11-26 16:23:24 +09:00
parent 01d7858a59
commit 8cb81878db
2 changed files with 33 additions and 17 deletions

View File

@@ -3,6 +3,18 @@ export const ui_configs = {
mic_threshold_max: 2000,
speaker_threshold_min: 0,
speaker_threshold_max: 4000,
overlay_small_log: {
x_pos: { step: 0.05, min: -0.5, max: 0.5 },
y_pos: { step: 0.05, min: -0.8, max: 0.8 },
z_pos: { step: 0.05, min: -0.5, max: 1.5 },
ui_scaling: { step: 10, min: 40, max: 200 },
},
overlay_large_log: {
x_pos: { step: 0.05, min: -0.5, max: 0.5 },
y_pos: { step: 0.05, min: -0.8, max: 0.8 },
z_pos: { step: 0.05, min: -0.5, max: 1.5 },
ui_scaling: { step: 10, min: 40, max: 200 },
},
selectable_ui_languages: [
{id: "en", label: "English"},
{id: "ja", label: "日本語"},