Skip to content
SirMortimer edited this page Apr 14, 2020 · 1 revision

Global counter for radiation field crossings, independent from vessels.

A radiation field crossing happens when a vessel crosses radiation field boundary, either by entering or leaving the field.

PARAMETER
{
  // The parameter name is not used, but should be provided to allow for
  // the possibility of other mods modifying contracts via ModuleManager.
  name = RadiationField

  // Optional, a custom description to show. Will be auto-generated if not given.
  title = Map the location of the inner radiation belt of @/targetBody

  type = RadiationField

  // Required, the field to test.
  // Possible values:
  // - INNER_BELT
  // - OUTER_BELT
  // - MAGNETOPAUSE
  // - ANY
  field = INNER_BELT

  // Min. and max. amount of crossings of the radiation field boundary.
  // at least one of crossings_min or crossings_max must be provided.
  crossings_min = 6
  crossings_max = 12

  // Required, the body of the radiation field
  targetBody = @/targetBody
}