ChangeBackgroundColor

Change the background color of the 3D view.

Function

void ChangeBackgroundColor(red: int, green: int, blue: int)

Parameters

  • red (int): red value. Has to be between 0 and 255
  • green (int): green value. Has to be between 0 and 255
  • blue (int): blue value. Has to be between 0 and 255

Example

Set a red background:

SYM3.ChangeBackgroundColor(255, 0, 0);