SetPlayerHeading: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server|1.0}}


{{FuncDescription|Sets players heading (rotation)}}
{{FuncDescription|Sets players heading (yaw rotation)}}


{{FuncSyntax|SetPlayerHeading(player, heading)}}
{{FuncSyntax|SetPlayerHeading(player, heading)}}
Line 9: Line 9:
{{FuncParam|heading|Angle (0-360) you want to set players heading to}}
{{FuncParam|heading|Angle (0-360) you want to set players heading to}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Returns '''true'''.}}


== Example ==
== Example ==
Line 15: Line 15:
SetPlayerHeading(player, 95)
SetPlayerHeading(player, 95)
</syntaxhighlight>
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
{{ServerPlayerFunctions}}

Latest revision as of 11:19, 1 September 2020

SetPlayerHeading

Type: Function
Context: Server
Introduced: v1.0

Description

Sets players heading (yaw rotation)

Syntax

SetPlayerHeading(player, heading)

Parameters

  • player
    Player you want to set heading of
  • heading
    Angle (0-360) you want to set players heading to

Return Value

  • Returns true.

Example

SetPlayerHeading(player, 95)

See also