Interface IMyLandingGear
Inherited Members
Namespace: SpaceEngineers.Game.ModAPI.Ingame
Assembly: SpaceEngineers.Game.dll
Syntax
public interface IMyLandingGear : IMyFunctionalBlock, IMyTerminalBlock, IMyCubeBlock, IMyEntity
Properties
AutoLock
Toggles the autolock of the landing gear.
Declaration
bool AutoLock { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsBreakable
Gets if the landing gear lock can be broken with force.
Declaration
bool IsBreakable { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsLocked
Gets whether the landing gear is currently locked.
Declaration
bool IsLocked { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsParkingEnabled
Declaration
bool IsParkingEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
LockMode
Is this block triggered by the parking signal?
Declaration
LandingGearMode LockMode { get; }
Property Value
Type | Description |
---|---|
LandingGearMode |
Methods
Lock()
Locks the landing gear.
Declaration
void Lock()
ResetAutoLock()
Resets autolock timer
Declaration
void ResetAutoLock()
ToggleLock()
Toggles the landing gear lock.
Declaration
void ToggleLock()
Unlock()
Unlocks the landing gear.
Declaration
void Unlock()