dartemis 0.4.0
dartemis: ^0.4.0 copied to clipboard
An Entity System Framework for game development. Based on Artemis.
Changelog #
##0.4.0
API Changes #
- swapped parameters of
Tagmanager.register - replaced
ImmutableBagwithReadOnlyBag, added getter forReadOnlyBagtoBag - changed
FreeComponentstoObjectPool - old
Componenthas changed, there are two different kinds of components now:- instances of classes extending
ComponentPoolablewill be added to theObjectPoolwhen they are removed from anEntity(preventing garbage collection and allowing reuse) - instances of classes extending
Componentwill not be added to theObjectPoolwhen they are removed from anEntity(allowing garbage collection)
- instances of classes extending
Enhancements #
- added function
deleteAllEntitiestoWorld IntervalEntitySystemhas a getter for thedeltasince the systm was processed last- updated to work with Dart M4
Bugfixes #
- GroupManager.isInGroup works if entity is in no group