This commit is contained in:
lwj
2025-05-29 20:03:28 +09:00
parent a575295c17
commit 88214ad41f
12 changed files with 5002 additions and 23 deletions

View File

@@ -58,8 +58,9 @@ public class SimulationModelSink : SimulationModel
SimulationModelStore storeModel = (SimulationModelStore)model;
while (storeModel.storedProducts.Count > queueCapacity)
{
Destroy(storeModel.GetProduct());
//Destroy(storeModel.GetProduct());
totalShipped++;
yield return null;
}
}
}