SetVolumetricShadowsEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Client function}}  
{{Client function}}  
__NOTOC__
__NOTOC__
This function use to enable or disable volumetric shadows.
{{Added feature/item|1.6.1|1.6.0|22716|
This function used to enable or disable volumetric shadows.
}}


==Syntax==  
==Syntax==  
Line 17: Line 19:
This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.
This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
if not( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled
if not ( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled
     setVolumetricShadowsEnabled( true )
     setVolumetricShadowsEnabled ( true )
     setWorldProperty ( "ShadowStrength", 500 ) -- set shadows alpha
     setWorldProperty ( "ShadowStrength", 500 ) -- set shadows alpha
else
else
Line 26: Line 28:


==See Also==
==See Also==
{{Client world functions}}
{{World functions|client}}

Revision as of 21:13, 6 September 2024

BETA: NEW FEATURE (BUILD: 1.6.0 r22716)

This function used to enable or disable volumetric shadows.

Syntax

bool setVolumetricShadowsEnabled ( bool state )

Required arguments

  • state: if set true it will enable the volumetric shadows, false otherwise.

Returns

Always returns true.

Example

This example check if volumetric shadows enabled, if not enabled then enable it and set the shadow alpha.

if not ( isVolumetricShadowsEnabled () ) then -- check if the volumetric shadows not enabled
    setVolumetricShadowsEnabled ( true )
    setWorldProperty ( "ShadowStrength", 500 ) -- set shadows alpha
else
    setWorldProperty ( "ShadowStrength", 500 )
end

See Also