docs: updated physics interface delta parameter comment

This commit is contained in:
2025-06-05 23:17:45 +03:00
parent f5fbd4e5ef
commit fbdea47dc7
4 changed files with 5 additions and 3 deletions

View File

@@ -187,6 +187,7 @@ public class PhysicsEngine2D : Behaviour, IPhysicsEngine2D
{
physicsPreUpdateCollector.Assign(universe);
physicsUpdateCollector.Assign(universe);
physicsIterationCollector.Assign(universe);
physicsPostUpdateCollector.Assign(universe);
colliderCollector.Assign(universe);
rigidBodyCollector.Assign(universe);
@@ -198,6 +199,7 @@ public class PhysicsEngine2D : Behaviour, IPhysicsEngine2D
{
physicsPreUpdateCollector.Unassign();
physicsUpdateCollector.Unassign();
physicsIterationCollector.Unassign();
physicsPostUpdateCollector.Unassign();
colliderCollector.Unassign();
rigidBodyCollector.Unassign();