RU/setSkyGradient

From Multi Theft Auto: Wiki
Revision as of 17:48, 7 March 2010 by PoliticalOrel (talk | contribs) (Created page with '__NOTOC__ {{RU/Server client function}} This function changes the sky color to a two-color gradient. ==Использование== <section name="Server and Client" class="both…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function changes the sky color to a two-color gradient.

Использование

Click to collapse [-]
Server and Client
bool setSkyGradient ( [ int topRed = 0, int topGreen = 0, int topBlue = 0, int bottomRed = 0, int bottomGreen = 0, int bottomBlue = 0 ] )

Обязательные параметры

NOTE: When using optional arguments, you might need to supply all arguments before the one you wish to use. For more information on optional arguments, see optional arguments.

  • topRed: The red value of the upper part of the sky, from 0 to 255.
  • topGreen: The green value of the upper part of the sky, from 0 to 255.
  • topBlue: The blue value of the upper part of the sky, from 0 to 255.
  • bottomRed: The red value of the lower part of the sky, from 0 to 255.
  • bottomGreen: The green value of the lower part of the sky, from 0 to 255.
  • bottomBlue: The blue value of the lower part of the sky, from 0 to 255.

Что возвращается

Returns true if sky color was set correctly, false if invalid values were passed.

Пример

Click to collapse [-]
Server and Client

This example sets the sky to a hot pink gradient.

setSkyGradient( 200, 0, 100, 150, 0, 70 )

Смотри также