EnableShadow

From MaratisWiki
(Difference between revisions)
Jump to: navigation, search
m
 
(2 intermediate revisions by one user not shown)
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.
  
Example:
+
{{lua-function-param|object|object to operate on}}
 +
{{lua-function-param|bool|state}}
 +
 
 
  light = getObject("Sun")
 
  light = getObject("Sun")
 
  -- Enable shadow casting
 
  -- Enable shadow casting
Line 11: Line 15:
  
 
[[Category:Lua scripting]]
 
[[Category:Lua scripting]]
 +
[[Category:Lua function]]
 +
[[Category:Object]]

Latest revision as of 01:16, 9 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.

  • object : object to operate on
  • bool : state
light = getObject("Sun")
-- Enable shadow casting
enableShadow(light, true)
-- Disable shadow casting
enableShadow(light, false)

To check if shadow casting is enabled use isCastingShadow

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox