KerbalAlarmClock

class KerbalAlarmClock

This service provides functionality to interact with Kerbal Alarm Clock.

Boolean Available { get; }

Whether Kerbal Alarm Clock is available.

Game Scenes:

All

IList<Alarm> Alarms { get; }

A list of all the alarms.

Game Scenes:

All

Alarm AlarmWithName (String name)

Get the alarm with the given name, or null if no alarms have that name. If more than one alarm has the name, only returns one of them.

Parameters:
  • name – Name of the alarm to search for.

Game Scenes:

All

IList<Alarm> AlarmsWithType (AlarmType type)

Get a list of alarms of the specified type.

Parameters:
  • type – Type of alarm to return.

Game Scenes:

All

Alarm CreateAlarm (AlarmType type, String name, Double ut)

Create a new alarm and return it.

Parameters:
  • type – Type of the new alarm.

  • name – Name of the new alarm.

  • ut – Time at which the new alarm should trigger.

Game Scenes:

All