Merge pull request 'Panel_Start Setting,App Setting 디자인 적용' (#112) from sjm/250528 into main

Reviewed-on: http://220.90.135.190:3000/UVCXR/Studio/pulls/112
This commit was merged in pull request #112.
This commit is contained in:
2025-05-28 13:35:51 +09:00
6 changed files with 1034 additions and 1324 deletions

View File

@@ -85,6 +85,16 @@ namespace Studio.UI
selectedToggle = TabToggles.GetFirstActiveToggle();
var image = toggle.transform.GetChild(0).GetComponent<Image>();
image.gameObject.SetActive(isOn);
TextMeshProUGUI text = toggle.GetComponentInChildren<TextMeshProUGUI>();
if (isOn)
{
text.color = Color.white;
}
else
{
text.color = Color.black;
}
}
private void OnClickAppSettingButton(bool isOn)
{