Entity::setCoords2: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
 
(One intermediate revision by one other user not shown)
Line 6: Line 6:
*'''yPos:''' float
*'''yPos:''' float
*'''zPos:''' float
*'''zPos:''' float
*'''xAxis:''' Boolean
*'''xAxis:''' float
*'''yAxis:''' Boolean
*'''yAxis:''' float
*'''zAxis:''' Boolean
*'''zAxis:''' float
*'''clearArea:''' Boolean
*'''clearArea:''' Boolean
===Return value===
===Return value===
Line 17: Line 17:
</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 18:00, 1 May 2024

does the same as SET_ENTITY_COORDS.

Console Hash: 0x749B282E

Syntax

entity.setCoords2(xPos, yPos, zPos, xAxis, yAxis, zAxis, clearArea);

Required Arguments

  • xPos: float
  • yPos: float
  • zPos: float
  • xAxis: float
  • yAxis: float
  • zAxis: float
  • clearArea: Boolean

Return value

  • Undefined

Example

// todo

See also