SetVolumetricShadowsEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 5: Line 5:
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool setVolumetricShadowsEnabled( bool state )
bool setVolumetricShadowsEnabled ( bool state )
</syntaxhighlight>  
</syntaxhighlight>  



Revision as of 20:27, 6 September 2024

This function use 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