This commit is contained in:
2025-06-05 17:18:27 +09:00
parent 4431df6f33
commit 85e8be0a54
20 changed files with 230 additions and 50 deletions

View File

@@ -22,7 +22,6 @@ public class SimulationModel : MonoBehaviour, IClickable
private void OnEnable()
{
Debug.Log(this.name);
DataManager.I.AddModel(this);
StartCoroutine(RunSimulationCoroutine());
}

View File

@@ -51,8 +51,6 @@ public class SimulationModelConveyor : SimulationModel
protected override IEnumerator RunSimulationCoroutine()
{
Debug.Log("Start");
yield return new WaitUntil(() => !string.IsNullOrEmpty(nodeID));
while (dataQueue == null)
{