IsElementStreamable: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} {{Needs_checking|Does this return true for vehicles the player is inside as they can't stream out?}} This function checks whether an element is streamable...)
 
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{Needs_checking|Does this return true for vehicles the player is inside as they can't stream out?}}
{{Needs Checking|Does this return true for vehicles the player is inside as they can't stream out?}}
This function checks whether an [[element]] is streamable as set by [[setElementStreamable]] or not.
This function checks whether an [[element]] is streamable as set by [[setElementStreamable]] or not.



Revision as of 08:25, 17 January 2008

Dialog-information.png This article needs checking.

Reason(s): Does this return true for vehicles the player is inside as they can't stream out?

This function checks whether an element is streamable as set by setElementStreamable or not.

Syntax

bool isElementStreamable ( element theElement )

Required Arguments

  • theElement: The element to check the streamability of.

Returns

Returns true if the passed element is streamable like normal, false if this element must always be streamed in.

Example

This clientside function destroys all local radar blips.


See Also