From eb486c9dc3d09ee39f10f0cc8d799074a44406b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=98=81=EB=AF=BC?= <117150306+jym04@users.noreply.github.com> Date: Thu, 29 May 2025 17:40:59 +0900 Subject: [PATCH 1/2] =?UTF-8?q?NewProject,=20OpenProject=20Button=20Text?= =?UTF-8?q?=20=EC=83=89=EC=83=81=20=EB=B3=80=EA=B2=BD=20=EA=B8=B0=EB=8A=A5?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/Studio/UI/Panel/Panel_Start.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Assets/Scripts/Studio/UI/Panel/Panel_Start.cs b/Assets/Scripts/Studio/UI/Panel/Panel_Start.cs index 7f81ba63..7b2c64ad 100644 --- a/Assets/Scripts/Studio/UI/Panel/Panel_Start.cs +++ b/Assets/Scripts/Studio/UI/Panel/Panel_Start.cs @@ -1,4 +1,5 @@ using System; +using TMPro; using UnityEngine; using UnityEngine.UI; using XRLib.UI; @@ -26,8 +27,13 @@ namespace Studio.UI { var newProjectButtonImage = Button_NewProject.transform.GetChild(0).GetComponent(); newProjectButtonImage.gameObject.SetActive(true); + var newProjectButtonText = Button_NewProject.transform.GetComponentInChildren(); + newProjectButtonText.color = Color.white; + var openProjectButtonImage = Button_OpenProject.transform.GetChild(0).GetComponent(); openProjectButtonImage.gameObject.SetActive(false); + var openProjectButtonText = Button_OpenProject.transform.GetComponentInChildren(); + openProjectButtonText.color = Color.black; onClickNewProject?.Invoke(); } @@ -36,8 +42,13 @@ namespace Studio.UI { var newProjectButtonImage = Button_NewProject.transform.GetChild(0).GetComponent(); newProjectButtonImage.gameObject.SetActive(false); + var newProjectButtonText = Button_NewProject.transform.GetComponentInChildren(); + newProjectButtonText.color = Color.black; + var openProjectButtonImage = Button_OpenProject.transform.GetChild(0).GetComponent(); openProjectButtonImage.gameObject.SetActive(true); + var openProjectButtonText = Button_OpenProject.transform.GetComponentInChildren(); + openProjectButtonText.color = Color.white; onClickOpenProject?.Invoke(); } -- 2.48.1.windows.1 From e83d15e69b295b0d70548bbc4412b35e3414b4da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=EC=98=81=EB=AF=BC?= <117150306+jym04@users.noreply.github.com> Date: Thu, 29 May 2025 17:42:28 +0900 Subject: [PATCH 2/2] =?UTF-8?q?ProjectName,=20Project=20Route=20=EC=9E=85?= =?UTF-8?q?=EB=A0=A5=20=ED=95=84=EB=93=9C=20=EA=B8=B0=EC=9A=B8=EA=B8=B0=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Prefabs/AAA/Panel_Start.prefab | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/Prefabs/AAA/Panel_Start.prefab b/Assets/Prefabs/AAA/Panel_Start.prefab index c43a27e1..8b8139c1 100644 --- a/Assets/Prefabs/AAA/Panel_Start.prefab +++ b/Assets/Prefabs/AAA/Panel_Start.prefab @@ -1568,7 +1568,7 @@ MonoBehaviour: m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 - m_fontStyle: 2 + m_fontStyle: 0 m_HorizontalAlignment: 1 m_VerticalAlignment: 512 m_textAlignment: 65535 @@ -3143,7 +3143,7 @@ MonoBehaviour: m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 - m_fontStyle: 2 + m_fontStyle: 0 m_HorizontalAlignment: 1 m_VerticalAlignment: 512 m_textAlignment: 65535 @@ -6654,7 +6654,7 @@ MonoBehaviour: m_enableAutoSizing: 0 m_fontSizeMin: 18 m_fontSizeMax: 72 - m_fontStyle: 2 + m_fontStyle: 0 m_HorizontalAlignment: 1 m_VerticalAlignment: 512 m_textAlignment: 65535 -- 2.48.1.windows.1