SetCoronaReflectionsEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
{{Client function}}
{{Client function}}
__NOTOC__
__NOTOC__
{{New feature/item|1.5.9|1.5.8|21251|Sets visibility of corona reflections.}}
{{Added feature/item|1.5.9|1.5.8|21251|Sets visibility of corona reflections.}}


==Syntax==  
==Syntax==  

Revision as of 11:01, 25 September 2022

Sets visibility of corona reflections.

Syntax

bool setCoronaReflectionsEnabled ( int enabled )

Required Arguments

  • enabled:
    • 0: disabled
    • 1: enabled
    • 2: force enabled, even if there is no rain

Returns

Returns true if passed arguments are correct, false otherwise.

Example

-- Force enable corona reflections even if there is no rain
setCoronaReflectionsEnabled(2)

See Also