오브젝트 선택창

This commit is contained in:
SullyunShin
2025-05-12 18:00:37 +09:00
parent d8c606fe6a
commit 8a1902d80d
30 changed files with 2625 additions and 1723 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
using TMPro;
public class ModelObjectStatus : MonoBehaviour
{
public TMP_Text textLogic;
public TMP_Text textName;
public TMP_Text textType;
public TMP_Text textID;
public void SetStatus(SimulationModel model)
{
textName.text = model.modelName;
textType.text = model.modelType;
}
}