This repository was archived by the owner on Dec 20, 2022. It is now read-only.
v0.4.0
API Changes
Start(), Update(), and FixedUpdate() are still called once for all Systems. When not overridden, they call Start( C component, ... ), Update( C component, ... ), and FixedUpdate( C component, ... ), respectively, for each bundle in the System.
When overriding Start(), Update(), and FixedUpdate(), you should also call base.Start(), base.Update(), and base.FixedUpdate() in order to call Start( EgoComponent egoComponent, C component, ... ), Update( EgoComponent egoComponent, C component, ... ), and FixedUpdate( EgoComponent egoComponent, C component, ... ), respectively.