C# Класс RPG.Tone

The color tone class. Each component is handled with a value.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

ToString() публичный Метод

Returns a that represents the current object.
public ToString ( ) : string
Результат string

Tone() публичный Метод

Creates a Tone object with all values initialized as 0.0.
public Tone ( ) : System
Результат System

Tone() публичный Метод

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)
Результат System

_arc_dump() публичный Метод

Serializes and dumps the Color object in ARC format.
public _arc_dump ( ) : byte[]
Результат byte[]

_arc_load() публичный статический Метод

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.
Результат Tone

set() публичный Метод

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)
Результат void

set() публичный Метод

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)
Результат void