SetCoronaReflectionsEnabled

From Multi Theft Auto: Wiki
Revision as of 10:52, 25 September 2022 by Lopez (talk | contribs) (Created page with "{{Client function}} __NOTOC__ {{New feature/item|1.5.9|1.5.8|21251|Sets visibility of corona reflections.}} ==Syntax== <syntaxhighlight lang="lua"> bool setCoronaReflectionsEnabled ( int enabled ) </syntaxhighlight> ===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== <syntaxhighlight lang="lua"> -- For...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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