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.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  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.3]
  4. ### Fixed
  5. * bumped dependency of Svelto.Common due to an important fix there.
  6. ## [3.1.2]
  7. ### Changed
  8. * improved async entity submission code (still experimental)
  9. * improved native entity operations debug info
  10. ## [3.1.1]
  11. ### Changed
  12. * SubmissionEngine didn't need the EntityManager property, so it has been removed
  13. ## [3.1.0]
  14. ### Changed
  15. * rearrange folders structures for clarity
  16. * added DoubleEntitiesEnumerator, as seen in MiniExample 4, to allow a double iteration of the same group skipping already checked tuples
  17. * reengineered the behaviour of WaitForSubmissionEnumerator
  18. * removed redudant SimpleEntitySubmissionSchedulerInterface interface
  19. * renamed BuildGroup in to ExclusiveBuildGroup
  20. * renamed EntityComponentInitializer to EntityInitializer
  21. * Entity Submission now can optionally be time sliced (based on number of entities to submit per slice)
  22. * working on the Unity extension Submission Engine, still WIP
  23. * 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
  24. * renamed NativeEntityComponentInitializer to NativeEntityInitializer
  25. ### Fixed