2025-05-12 18:00:37 +09:00
|
|
|
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;
|
2025-06-05 17:54:18 +09:00
|
|
|
textType.text = model.modelType.ToString();
|
2025-05-12 18:00:37 +09:00
|
|
|
}
|
|
|
|
|
}
|