SetCoronaReflectionsEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
Line 22: Line 22:
setCoronaReflectionsEnabled(2)
setCoronaReflectionsEnabled(2)
</syntaxhighlight>
</syntaxhighlight>
==Issues==
{{Issues|
{{Issue|2755|Corona reflections do not render on custom placed objects}}
{{Issue|2750|Corona reflections do not render on all roads}}
}}


==See Also==
==See Also==
{{client world functions}}
{{client world functions}}

Revision as of 21:04, 7 October 2022

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

Issues

Issue ID Description
#2755 Corona reflections do not render on custom placed objects
#2750 Corona reflections do not render on all roads

See Also