RemoteTech.FlightComputer.FlightComputer.OnUpdate C# (CSharp) Метод

OnUpdate() публичный Метод

Called by the ModuleSPU.Update method during the Update() "Game Logic" engine phase.
This checks if there are any commands that can be removed from the FC queue if their delay has elapsed.
public OnUpdate ( ) : void
Результат void
        public void OnUpdate()
        {
            if (RTCore.Instance == null) return;
            if (!SignalProcessor.IsMaster) return;
            PopCommand();
        }