This repository was archived by the owner on Dec 13, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
Sandbox.ModAPI.Ingame.IMyGridTerminalSystem
Morten Aune Lyrstad edited this page Apr 16, 2022
·
46 revisions
← Index ← Namespace Index
public interface IMyGridTerminalSystemDescribes terminal system (PB scripting interface)
Namespace: Sandbox.ModAPI.Ingame
Assembly: Sandbox.Common.dll
| Member | Description |
|---|---|
| bool CanAccess(IMyTerminalBlock, MyTerminalAccessScope = MyTerminalAccessScope.All) | Checks if the grid terminal system can still access the given IMyTerminalBlock . A block is no longer accessible if it's destroyed, detached, it's ownership has changed or is otherwise disconnected from this grid terminal system. |
| bool CanAccess(IMyCubeGrid, MyTerminalAccessScope = MyTerminalAccessScope.All) | Checks if the grid terminal system can still access the given IMyCubeGrid . A grid is no longer accessible if it's destroyed, detached, it's ownership has changed or is otherwise disconnected from this grid terminal system. |
| void GetBlockGroups(List<IMyBlockGroup>, Func<IMyBlockGroup, bool> = default) | Fills the provided list with the block groups reachable by this grid terminal system. |
| IMyBlockGroup GetBlockGroupWithName(string) | Returns the first block group found with the given name. Will returnnullif no block group with that name can be found. |
| void GetBlocks(List<IMyTerminalBlock>) | Fills the provided list with all the blocks reachable by this grid terminal system. This means all blocks on the same grid, or connected via rotors, pistons or connectors. |
| void GetBlocksOfType<T>(List<IMyTerminalBlock>, Func<IMyTerminalBlock, bool> = default) | |
| void GetBlocksOfType<T>(List<T>, Func<T, bool> = default) | |
| IMyTerminalBlock GetBlockWithId(long) | Attempts to retrieve the block with the given entity ID. |
| IMyTerminalBlock GetBlockWithName(string) | Returns the first block found with the given name. |
| void SearchBlocksOfName(string, List<IMyTerminalBlock>, Func<IMyTerminalBlock, bool> = default) | Fills the provided list with the blocks reachable by this grid terminal system. This means all blocks on the same grid, or connected via rotors, pistons or connectors. |
Do you have questions, comments, suggestions for improvements? Is there something I can do better? Did I make a mistake? Please add an issue here, and prefix your issue title with Wiki. Thank you, your help will be very appreciated!