Class ComponentSystemGroup
  
Inheritance
ComponentSystemGroup
 
Syntax
public abstract class ComponentSystemGroup : ComponentSystem
 
Fields
  
m_systemsToRemove
Declaration
protected List<ComponentSystemBase> m_systemsToRemove
 
Field Value
m_systemsToUpdate
Declaration
protected List<ComponentSystemBase> m_systemsToUpdate
 
Field Value
UpdateCallback
An optional callback.  If set, this group's systems will be updated in a loop while
this callback returns true.  This can be used to implement custom processing before/after
update (first call should return true, second should return false), or to run a group's
systems multiple times (return true more than once).
The group is passed as the first parameter.
 
Declaration
public Func<ComponentSystemGroup, bool> UpdateCallback
 
Field Value
Properties
  
Systems
Declaration
public virtual IEnumerable<ComponentSystemBase> Systems { get; }
 
Property Value
Methods
  
AddSystemToUpdateList(ComponentSystemBase)
Declaration
public void AddSystemToUpdateList(ComponentSystemBase sys)
 
Parameters
OnStopRunning()
Declaration
protected override void OnStopRunning()
 
Overrides
OnUpdate()
Declaration
protected override void OnUpdate()
 
Overrides
RemoveSystemFromUpdateList(ComponentSystemBase)
Declaration
public void RemoveSystemFromUpdateList(ComponentSystemBase sys)
 
Parameters
SortSystemUpdateList()
Declaration
public virtual void SortSystemUpdateList()
 
Extension Methods