ui및 기타등등

This commit is contained in:
2025-05-29 02:08:28 +09:00
parent 6f45e08103
commit 824e312de7
86 changed files with 267418 additions and 617 deletions

View File

@@ -1,7 +1,9 @@
using UnityEngine;
using UnityEngine;
using System.Collections;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
using System.Collections.Generic;
using Octopus.Simulator;
public class SimulationModel : MonoBehaviour, IClickable
{
public string modelName;
@@ -12,7 +14,12 @@ public class SimulationModel : MonoBehaviour, IClickable
void Awake()
{
FitCollider();
}
}
private void Start()
{
}
private void OnEnable()
{
DataManager.I.AddModel(this);
@@ -97,4 +104,20 @@ public class SimulationModel : MonoBehaviour, IClickable
}
return 0;
}
public void UpdatePopupData(string json)
{
var wrapper=JsonConvert.DeserializeObject<mqttwrab>(json);
}
public void SetPopupData()
{
var ldmanager = FindAnyObjectByType<LogicDataManager>();
}
public void DeletePopupData()
{
}
}