Is it possible to add pause function to the game. Without setting all DynamicObject velocity to 0. E.g. the pong game.
Lance GG : Is it posible to activate game pause?
146 Views Asked by Mark At
2
Is it possible to add pause function to the game. Without setting all DynamicObject velocity to 0. E.g. the pong game.
Lance is a multiplayer game engine, so it wouldn't make sense to pause the game just for a single client - as the game must continue for all other players.
Nevertheless, there is an
ignorePhysicsattribute on theGameEngineclass. Setting this attribute totrueon the server would stop the physics, and should work in interpolation mode.