System
Last updated
Was this helpful?
Last updated
Was this helpful?
A system is a class that manages something, it should work on its own, the only exception is when it needs information about other system, but it is preferable that you do that by using events or event buses or .
A system can be networked or not, for that you can inherit your class from System or NetworkSystem.
Here's a snipped of now you can declare a system that creates explosion somewhere.
It is also important that you know all the systems work with the class
Always add the postfix "System" in the name of the class for your systems.