InfernalRobotics#

class InfernalRobotics#

This service provides functionality to interact with Infernal Robotics.

Boolean Available { get; }#

Whether Infernal Robotics is installed.

Game Scenes:

All

Boolean Ready { get; }#

Whether Infernal Robotics API is ready.

Game Scenes:

Flight

IList<ServoGroup> ServoGroups (SpaceCenter.Vessel vessel)#

A list of all the servo groups in the given vessel.

Parameters:

Game Scenes:

Flight

Note

Works for any loaded vessel, not just the active one. Groups on a non-active vessel support movement and per-servo control, but not preset, key, speed-factor or expanded state, which are only tracked by Infernal Robotics for the active vessel.

ServoGroup ServoGroupWithName (SpaceCenter.Vessel vessel, String name)#

Returns the servo group in the given vessel with the given name, or null if none exists. If multiple servo groups have the same name, only one of them is returned.

Parameters:
  • vessel – Vessel to check.

  • name – Name of servo group to find.

Game Scenes:

Flight

Servo ServoWithName (SpaceCenter.Vessel vessel, String name)#

Returns the servo in the given vessel with the given name or null if none exists. If multiple servos have the same name, only one of them is returned.

Parameters:
  • vessel – Vessel to check.

  • name – Name of the servo to find.

Game Scenes:

Flight