EnableShadow
(Difference between revisions)
Dahnielson (Talk | contribs) |
Dahnielson (Talk | contribs) m |
||
Line 1: | Line 1: | ||
+ | {{lua-function|enableShadow|object, bool}} | ||
+ | |||
Enable or disable shadow casting on the light object. All objects affected by light with enabled shadow casting will cast shadows on itself and on other objects. | Enable or disable shadow casting on the light object. All objects affected by light with enabled shadow casting will cast shadows on itself and on other objects. | ||
Revision as of 17:36, 8 February 2014
enableShadow(object, bool)
Enable or disable shadow casting on the light object. All objects affected by light with enabled shadow casting will cast shadows on itself and on other objects.
Example:
light = getObject("Sun") -- Enable shadow casting enableShadow(light, true) -- Disable shadow casting enableShadow(light, false)
To check if shadow casting is enabled use isCastingShadow