RemoteTech.FlightComputer.FlightComputer.OnUpdate C# (CSharp) Method

OnUpdate() public method

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
return void
        public void OnUpdate()
        {
            if (RTCore.Instance == null) return;
            if (!SignalProcessor.IsMaster) return;
            PopCommand();
        }