class Color3
Color3
(
red
,
green
,
blue
)
:
Color3 |
Signature
constructor(red: Float = 0.0f, green: Float = 0.0f, blue: Float = 0.0f) Parameters
red:
Float
green:
Float
blue:
Float
Returns |
Color3
()
:
Color3 |
Creates a new Color3 object with default values of 0 for each property.
Signature
constructor() Returns |
blue
:
Float
[Get][Set] |
The blue component of the color, as a float between 0 and 1.
Signature
var blue: Float |
green
:
Float
[Get][Set] |
The green component of the color, as a float between 0 and 1.
Signature
var green: Float |
red
:
Float
[Get][Set] |
The red component of the color, as a float between 0 and 1.
Signature
var red: Float |
equals
(
other
)
:
Boolean
|
Signature
open operator override fun equals(other: Any?): Boolean Parameters
other:
Any?
Returns
Boolean
|
hashCode
()
:
Int
|
Signature
open override fun hashCode(): Int Returns
Int
|