SetLightDirection: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
Line 21: | Line 21: | ||
===Example=== | ===Example=== | ||
<syntaxhighlight lang="lua">[Lua] | <syntaxhighlight lang="lua">[Lua] | ||
local light = createLight(0, 0, 0, 4) | |||
addCommandHandler("setdirectionoflight", | |||
function(cmd, x, y, z) | |||
if x and y and z then | |||
setLightDirection(light, tonumber(x), tonumber(y), tonumber(z)) | |||
end | |||
end | |||
) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
==See also== | ==See also== | ||
{{Client_light_functions}} | {{Client_light_functions}} |
Revision as of 16:15, 13 April 2015
Script Example Missing Function SetLightDirection needs a script example, help out by writing one. | |
Before submitting check out Editing Guidelines Script Examples. |
This function sets the direction for a light element.
Syntax
bool setLightDirection ( light theLight, float x, float y, float z )
OOP Syntax Help! I don't understand this!
- Method: light:setDirection(...)
- Variable: .direction
- Counterpart: getLightDirection
Required Arguments
- theLight: The light that you wish to set the direction of.
Returns
Returns true if the function was successful, false otherwise.
Example
[Lua] local light = createLight(0, 0, 0, 4) addCommandHandler("setdirectionoflight", function(cmd, x, y, z) if x and y and z then setLightDirection(light, tonumber(x), tonumber(y), tonumber(z)) end end )