모델 스크립트 추가
Some checks failed
Code Review / code-review (pull_request) Has been cancelled

모델 아이콘 추가
모든 모델 UI 추가
This commit is contained in:
SullyunShin
2025-05-12 10:25:52 +09:00
parent b0c3a00dfe
commit efebf78a0b
37 changed files with 2303 additions and 7 deletions

View File

@@ -0,0 +1,31 @@
using UnityEngine;
public class SimulationModel : MonoBehaviour
{
private bool isQuitting = false;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void OnEnable()
{
DataManager.I.AddModel(this);
}
private void OnDisable()
{
if (isQuitting) return;
DataManager.I.RemoveModel(this);
}
void OnApplicationQuit()
{
isQuitting = true;
}
}