SetCoronaReflectionsEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Client function}}
{{Client function}}
__NOTOC__
__NOTOC__
{{Added feature/item|1.5.9|1.5.8|21251|Sets visibility of corona reflections.}}
[[File:Corona-reflections.png|500px|thumb|right|Corona reflections.]]
{{Added feature/item|1.5.9|1.5.8|21251|This function sets visibility of corona reflections.}}


==Syntax==  
==Syntax==  
Line 11: Line 12:
*'''enabled:'''
*'''enabled:'''
** '''0''': disabled
** '''0''': disabled
** '''1''': enabled
** '''1''': enabled (will be visible during rain)
** '''2''': force enabled, even if there is no rain
** '''2''': force enabled (will be visible even if there is no rain)


===Returns===
===Returns===
Line 22: Line 23:
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}}

Latest revision as of 21:54, 7 October 2022

Corona reflections.

This function sets visibility of corona reflections.

Syntax

bool setCoronaReflectionsEnabled ( int enabled )

Required Arguments

  • enabled:
    • 0: disabled
    • 1: enabled (will be visible during rain)
    • 2: force enabled (will be visible 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

Shared