Search Unity

Feedback Make public ScriptBehaviourUpdateOrder's internal method/types

Discussion in 'Entity Component System' started by Kichang-Kim, Apr 2, 2020.

  1. Kichang-Kim

    Kichang-Kim

    Joined:
    Oct 19, 2010
    Posts:
    1,011
    Hi. I have a feedback about ScriptBehaviourUpdateOrder for custom root ComopnentSystemGroup.

    I implemented own root component system group, updated in FixedUpdate player loop. But if I add it to playerloop myself, it doesn't appear in EntitiyDebugger. Because EntitiyDebugger find component system group by using its internal DummyDelegateWrapper class also it is created in internal method
    InsertManagerIntoSubsystemList().

    I currently used InsertManagerIntoSubsystemList by reflection, but if it is changed to public method, it will be more safe for users.

    Thanks.
     
    tbg10101_ likes this.
  2. Kichang-Kim

    Kichang-Kim

    Joined:
    Oct 19, 2010
    Posts:
    1,011