Action
Specify the clear values for Red, Green and Blue channels.
Syntax
ClearColorRGB Red, Green, Blue
Remarks
Red |
Red value used when the color buffer is cleared. The initial value is 0 |
Green |
Green value used when the color buffer is cleared. The initial value is 0 |
Blue |
Blue value used when the color buffer is cleared. The initial value is 0 |
Sets the color values used by a following Clear_B
See also
ClearColorA, Clear_B , ClearColorRGBdw
Example
' Pseudocode
' To clear the screen to bright blue:
ClearColorRGB 0, 0, 255
Clear_B 1, 1, 1
' To clear part of the screen to gray, part to blue using scissor rectangles:
ClearColorRGB 100, 100, 100
Clear_B 1, 1, 1
ClearColorRGB 0, 0, 255
ScissorScize 30, 120
Clear_B 1, 1, 1