GetSkyGradient: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server client function}} This function will return the current sky color. '''Note:''' The server can only return the sky color if it has actually been set by script....")
 
mNo edit summary
 
(2 intermediate revisions by one other user not shown)
Line 14: Line 14:


==Example==  
==Example==  
<section name="Client" class="client" show="true">
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--TODO
function check()
local r1, g1, b1, r2, g2, b2 = getSkyGradient()
outputChatBox("Sky gradient colors are R: "..r1.." G: "..g1.." B: "..b1.." and R: "..r2.." G: "..g2.." B: "..b2)
end
addCommandHandler("skygradient", check)
</syntaxhighlight>
</syntaxhighlight>
</section>


==See Also==
==See Also==
{{World functions}}
{{World functions}}
[[Category:Needs_Example]]

Latest revision as of 18:48, 26 February 2012

This function will return the current sky color.

Note: The server can only return the sky color if it has actually been set by script.

Syntax

int, int, int, int, int, int getSkyGradient ( )

Returns

Returns 6 ints, of which the first 3 represent the sky's "top" color, (in RGB) and the last 3 represent the bottom colors.

Example

Click to collapse [-]
Client
function check()
	local r1, g1, b1, r2, g2, b2 = getSkyGradient()
	outputChatBox("Sky gradient colors are R: "..r1.." G: "..g1.." B: "..b1.." and R: "..r2.." G: "..g2.." B: "..b2)
end
addCommandHandler("skygradient", check)

See Also