MQTTData 버튼 추가

This commit is contained in:
jmaniuvc
2025-05-23 13:59:45 +09:00
parent 21e9b58d03
commit 7f9dd3ad57
10 changed files with 1918 additions and 166 deletions

View File

@@ -16,7 +16,7 @@ namespace XED
TextMeshProUGUI buttonName;
string baseDataKey;
StudioEntityWithState<object> apiDataValue;
StudioEntityWithState<object> dataValue;
private void Awake()
{
@@ -28,13 +28,13 @@ namespace XED
void OnClickButton()
{
panel_Repository.ShowInformation_APIData(apiDataValue);
panel_Repository.ShowInformation_APIData(dataValue);
}
public void SetButtonData(string name, StudioEntityWithState<object> data)
{
baseDataKey = name;
apiDataValue = data;
dataValue = data;
buttonName.text = name;
}