From ea826a888dca3609064b9fc68e6f5fd7f7b2c092 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 15:53:00 +0900 Subject: [PATCH] =?UTF-8?q?=ED=94=84=EB=A1=9C=EC=A0=9D=ED=8A=B8=20?= =?UTF-8?q?=EB=A1=9C=EB=93=9C=20=EC=8B=9C=20MQTT=20Setting=20Add=20Topic?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=EC=9D=B4=20=EC=95=84=EB=9E=98=EB=A1=9C=20?= =?UTF-8?q?=EB=82=B4=EB=A0=A4=EA=B0=80=EC=A7=80=20=EC=95=8A=EB=8A=94=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scenes/pre-0.24.0.unity | 8 ++++++++ Assets/Scripts/Studio/UI/Elements/UI_MQTTConnection.cs | 2 +- Assets/Scripts/Studio/UI/Panel/Panel_MQTTSetting.cs | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Assets/Scenes/pre-0.24.0.unity b/Assets/Scenes/pre-0.24.0.unity index 57a5e0a6..bab6bffe 100644 --- a/Assets/Scenes/pre-0.24.0.unity +++ b/Assets/Scenes/pre-0.24.0.unity @@ -354,6 +354,10 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 3396806135333855691, guid: 192ba749438045e4bb32753ffff354b1, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6745165671321524316, guid: 192ba749438045e4bb32753ffff354b1, type: 3} propertyPath: m_Name value: Panel_SaveAndOpenChecker @@ -1044,6 +1048,10 @@ PrefabInstance: propertyPath: m_Name value: Panel_SaveAndNewChecker objectReference: {fileID: 0} + - target: {fileID: 7955828146152623659, guid: 72f142af384a5e341bf6099f889cca18, type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] diff --git a/Assets/Scripts/Studio/UI/Elements/UI_MQTTConnection.cs b/Assets/Scripts/Studio/UI/Elements/UI_MQTTConnection.cs index 4b07e939..be43354d 100644 --- a/Assets/Scripts/Studio/UI/Elements/UI_MQTTConnection.cs +++ b/Assets/Scripts/Studio/UI/Elements/UI_MQTTConnection.cs @@ -127,7 +127,7 @@ namespace Studio.UI item.SetTopic(topic); AddURLItem(item); - Button_AddTopicItem.transform.SetAsLastSibling(); + AddTopic.transform.SetAsLastSibling(); } } } diff --git a/Assets/Scripts/Studio/UI/Panel/Panel_MQTTSetting.cs b/Assets/Scripts/Studio/UI/Panel/Panel_MQTTSetting.cs index 39f0af41..abf679f5 100644 --- a/Assets/Scripts/Studio/UI/Panel/Panel_MQTTSetting.cs +++ b/Assets/Scripts/Studio/UI/Panel/Panel_MQTTSetting.cs @@ -81,7 +81,7 @@ namespace Studio.UI item.SetMQTTConnection(mqttConnection); AddMQTTConnectionItem(item); - Button_AddMQTTConnectionItem.transform.SetAsLastSibling(); + AddMQTTConnection.transform.SetAsLastSibling(); } } } -- 2.48.1.windows.1