This library displays a list of structure Svelto.ECS entities and their structure in the Unity Inspector.
*Rewriting values is not supported.
- Unity 2022.1 higher
https://github.com/kurobon-jp/SveltoECS.Unity.EntityVisualize.git?path=Assets/
public class MainCompositionRoot : ICompositionRoot
{
public void OnContextInitialized<T>(T contextHolder)
{
var entitySubmissionScheduler = new EntitiesSubmissionScheduler();
var enginesRoot = new EnginesRoot(entitySubmissionScheduler);
enginesRoot.AddEngine(new HogeEngine());
~
EntityVisualizer.Register("MainEnginesRoot", enginesRoot);
}
}