Mirror of Svelto.ECS because we're a fan of it
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 1.2KB

12345678910111213141516171819202122232425262728293031323334
  1. # Changelog
  2. All notable changes to this project will be documented in this file. I created this file with Svelto.ECS version 3.1.
  3. ## [3.1.2]
  4. ### Changed
  5. * improved async entity submission code (still experimental)
  6. * improved native entity operations debug info
  7. *
  8. ## [3.1.1]
  9. ### Changed
  10. * SubmissionEngine didn't need the EntityManager property, so it has been removed
  11. ## [3.1.0]
  12. ### Changed
  13. * rearrange folders structures for clarity
  14. * added DoubleEntitiesEnumerator, as seen in MiniExample 4, to allow a double iteration of the same group skipping already checked tuples
  15. * reengineered the behaviour of WaitForSubmissionEnumerator
  16. * removed redudant SimpleEntitySubmissionSchedulerInterface interface
  17. * renamed BuildGroup in to ExclusiveBuildGroup
  18. * renamed EntityComponentInitializer to EntityInitializer
  19. * Entity Submission now can optionally be time sliced (based on number of entities to submit per slice)
  20. * working on the Unity extension Submission Engine, still WIP
  21. * added the possibility to hold a reference in a EntityViewComponent. This reference cannot be accesses as an object, but can be converted to the original object in OOP abstract layers
  22. * renamed NativeEntityComponentInitializer to NativeEntityInitializer
  23. ### Fixed