Entitas.Systems.Execute C# (CSharp) Method

Execute() public method

public Execute ( ) : void
return void
        public virtual void Execute()
        {
            for (int i = 0; i < _executeSystems.Count; i++) {
                _executeSystems[i].Execute();
            }
        }

Usage Example

Example #1
0
 protected void LateUpdate()
 {
     if (!_gameEntity.time.isPaused)
     {
         _pausableFixedUpdateSystems.Execute();
     }
 }
All Usage Examples Of Entitas.Systems::Execute