GetSkyGradient: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 18: Line 18:
function check()
function check()
local r1, g1, b1, r2, g2, b2 = getSkyGradient()
local r1, g1, b1, r2, g2, b2 = getSkyGradient()
outputChatBox("Sky gradient colors is R: "..r1.." G: "..g1.." B: "..b1.." and R: "..r2.." G: "..g2.." B: "..b2)
outputChatBox("Sky gradient colors are R: "..r1.." G: "..g1.." B: "..b1.." and R: "..r2.." G: "..g2.." B: "..b2)
end
end
addCommandHandler("skygradient", check)
addCommandHandler("skygradient", check)

Revision as of 22:10, 22 December 2011

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