INDEX

/**/ (remark)


Purpose:

For embedding comments or remarks in script files.

Entry:

/* line(s) of text */

/* */ differs from // in that it can be placed whereever there is white space in a script file, and the comment can span multiple lines in a script file. Example:

/* Go into Options, and click on the check boxes
for Joystick and Throttle. Under Joystick select
"As steering device", and under Throttle select
"As accelerator". */

Restrictions:

  • At the present time, if you use /**/, // or the [SETUP] block for comments, and then edit the script file with the ThrustMapper, all comments will be stripped out of the file.
  • Comments using /**/ cannot be nested. Example of what not to do:

    /* Set up selector /* need only two positions */ */

  • /**/ is not needed or used within a [SETUP] block.


prev home  next