Sandbox.ModAPI.Ingame.IMyGridProgramRuntimeInfo - bimbam2103/space_engineers GitHub Wiki
← Index ← Namespace Index
public interface IMyGridProgramRuntimeInfo
Provides runtime info for a running grid program.
Namespace: Sandbox.ModAPI.Ingame
Assembly: Sandbox.Common.dll
int CurrentCallChainDepth { get; }
Gets the current number of nested method calls.
int CurrentInstructionCount { get; }
Gets the current number of significant instructions executed.
Gets the number of milliseconds it took to execute the Main method the last time it was run. This property returns no valid data neither in the constructor nor the Save method.
int MaxCallChainDepth { get; }
Gets the maximum number of method calls that can be nested into each other.
int MaxInstructionCount { get; }
Gets the maximum number of significant instructions that can be executing during a single run, including any other programmable blocks invoked immediately.
TimeSpan TimeSinceLastRun { get; }
Gets the time elapsed since the last time the Main method of this program was run. This property returns no valid data neither in the constructor nor the Save method.
UpdateFrequency UpdateFrequency { get; set; }
Gets or sets how frequently this script will run itself