Entity::isInArea: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
Line 19: Line 19:
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Entity_function_c}}
{{Entity_definition_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 17:59, 1 May 2024

Syntax

entity.isInArea(x1, y1, z1, x2, y2, z2, p7, p8, p9);

Required Arguments

  • x1: float
  • y1: float
  • z1: float
  • x2: float
  • y2: float
  • z2: float
  • p7: Boolean
  • p8: Boolean
  • p9: unknown (to be checked)

Return value

  • Boolean

Example

// todo

See also