ImmutableOctet / glare

Glare: Open Source Game Engine written in Modern C++
MIT License
0 stars 0 forks source link

Determine which portions of `MotionSystem` can be removed/reworked with new Entity Script functionality #87

Open ImmutableOctet opened 1 month ago

ImmutableOctet commented 1 month ago

We've moved to having a lot of player control and AI work done in scripts, so the old movement systems don't make as much sense anymore. Things like gravity or raw velocity could probably stick to the component + system behavior approach, but other things like applied forces and acceleration don't necessarily need to be part of a system any longer.