IsCoronaReflectionEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ {{Added feature/item|1.5.9|1.5.8|21251|Gets visibility of corona reflection.}} ==Syntax== <syntaxhighlight lang="lua"> bool isCoronaReflectionEnabled ( marker theMarker ) </syntaxhighlight> ===Required Arguments=== *'''theMarker:''' marker ===Returns=== * Returns ''false'' is marker type is not ''corona''. * Returns ''true'' if corona reflection is enabled, ''false'' otherwise. ==See Also== {{client marker functions}}")
 
No edit summary
Line 2: Line 2:
__NOTOC__
__NOTOC__
{{Added feature/item|1.5.9|1.5.8|21251|Gets visibility of corona reflection.}}
{{Added feature/item|1.5.9|1.5.8|21251|Gets visibility of corona reflection.}}
==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool isCoronaReflectionEnabled ( marker theMarker )
bool isCoronaReflectionEnabled ( marker theMarker )
</syntaxhighlight>  
</syntaxhighlight>  
 
{{OOP||[[Marker]]:isCoronaReflectionEnabled||setCoronaReflectionEnabled}}
===Required Arguments===  
===Required Arguments===  
*'''theMarker:''' marker
*'''theMarker:''' marker

Revision as of 11:11, 25 September 2022

Gets visibility of corona reflection.

Syntax

bool isCoronaReflectionEnabled ( marker theMarker )

OOP Syntax Help! I don't understand this!

Method: Marker:isCoronaReflectionEnabled(...)
Counterpart: setCoronaReflectionEnabled


Required Arguments

  • theMarker: marker

Returns

  • Returns false is marker type is not corona.
  • Returns true if corona reflection is enabled, false otherwise.

See Also