C# Class RPG.Tone

The color tone class. Each component is handled with a value.
Afficher le fichier Open project: borisblizzard/arcreator Class Usage Examples

Méthodes publiques

Méthode Description
ToString ( ) : string

Returns a that represents the current object.

Tone ( ) : System

Creates a Tone object with all values initialized as 0.0.

Tone ( float red, float green, float blue, float gray = 0.0f ) : System

Creates a Tone object. If gray is omitted, it is assumed at 0.

_arc_dump ( ) : byte[]

Serializes and dumps the Color object in ARC format.

_arc_load ( byte bytes ) : Tone

Deserializes and loads a Color object saved in ARC format.

set ( float red, float green, float blue ) : void

Sets all components at once. Gray remains the same.

set ( float red, float green, float blue, float gray ) : void

Sets all components at once.

Method Details

ToString() public méthode

Returns a that represents the current object.
public ToString ( ) : string
Résultat string

Tone() public méthode

Creates a Tone object with all values initialized as 0.0.
public Tone ( ) : System
Résultat System

Tone() public méthode

Creates a Tone object. If gray is omitted, it is assumed at 0.
public Tone ( float red, float green, float blue, float gray = 0.0f ) : System
red float The red value (-255-255)
green float The green value (-255-255)
blue float The blue value (-255-255)
gray float The gray value (0-255)
Résultat System

_arc_dump() public méthode

Serializes and dumps the Color object in ARC format.
public _arc_dump ( ) : byte[]
Résultat byte[]

_arc_load() public static méthode

Deserializes and loads a Color object saved in ARC format.
public static _arc_load ( byte bytes ) : Tone
bytes byte A array containing the serialized data.
Résultat Tone

set() public méthode

Sets all components at once. Gray remains the same.
public set ( float red, float green, float blue ) : void
red float The red value (-255-255)
green float The green value (-255-255)
blue float The blue value (-255-255)
Résultat void

set() public méthode

Sets all components at once.
public set ( float red, float green, float blue, float gray ) : void
red float The red value (-255-255)
green float The green value (-255-255)
blue float The blue value (-255-255)
gray float The gray value (0-255)
Résultat void