RU/setSkyGradient: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(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…')
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{RU/Server client function}}
{{RU/Server client function}}
This function changes the sky color to a two-color gradient.
Эта функция изменяет цвет градиента неба.


==Использование==
==Использование==
Line 10: Line 10:


===Обязательные параметры===  
===Обязательные параметры===  
{{OptionalArg}}  
{{RU/OptionalArg}}  
*'''topRed:''' The ''red'' value of the upper part of the sky, from 0 to 255.
*'''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.
*'''topGreen:''' The ''green'' value of the upper part of the sky, from 0 to 255.
Line 19: Line 19:


===Что возвращается===
===Что возвращается===
Returns ''true'' if sky color was set correctly, ''false'' if invalid values were passed.
Возвращается ''true'', если для изменение градиента были введены правильные параметры, или ''false'', если были введены неправильные параметры..
</section>
</section>


==Пример==  
==Пример==  
<section name="Server and Client" class="both" show="true">
<section name="Server and Client" class="both" show="true">
This example sets the sky to a hot pink gradient.
В этом примере устанавливается ярко-розовый градиент неба.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
setSkyGradient( 200, 0, 100, 150, 0, 70 )
setSkyGradient( 200, 0, 100, 150, 0, 70 )

Revision as of 17:54, 7 March 2010

Эта функция изменяет цвет градиента неба.

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

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 ] )

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

Примечание. При использовании необязательных аргументов Вам может потребоваться предоставить все аргументы перед тем аргументом, который Вы хотите использовать. Для более подробной информации ознакомьтесь с необязательными аргументами.

  • 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.

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

Возвращается true, если для изменение градиента были введены правильные параметры, или false, если были введены неправильные параметры..

Пример

Click to collapse [-]
Server and Client

В этом примере устанавливается ярко-розовый градиент неба.

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

Смотри также