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.
|
- #if UNITY_ECS
- namespace Svelto.ECS.SveltoOnDOTS
- {
- /// <summary>
- /// SubmissionEngine is a dedicated DOTS ECS Svelto.ECS engine that allows using the DOTS ECS
- /// EntityCommandBuffer for fast creation of DOTS entities
- /// </summary>
- public interface ISveltoOnDOTSStructuralEngine
- {
- DOTSOperationsForSvelto DOTSOperations { get; set; }
-
- string name { get; }
-
- //use case is i.e. to create archetypes once
- void OnOperationsReady();
- //use case is i.e. to operate once per submission on entities just created
- void OnPostSubmission();
- }
- }
- #endif
|