WoW:API UnitFacing: Difference between revisions
Jump to navigation
Jump to search
UnitFacing -Documentation by sparsematrix-
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
{{removedapi|1.3.0|}} | |||
<center>'''UnitFacing''' ''-Documentation by [[User:sparsematrix|sparsematrix]]-''</center> | <center>'''UnitFacing''' ''-Documentation by [[User:sparsematrix|sparsematrix]]-''</center> | ||
Revision as of 21:07, 23 May 2006
This is no longer a part of the World of Warcraft API.
|
Returns the direction in which the unit is facing (Counterclockwise radians, from North)
local orientation = UnitFacing(unit);
- Arguments
- (String unit)
- arg1
- the unit's orientation to query
- Returns
- orientation
- orientation
- the current orientation (counterclockwise radians, from north) of the specified unit
- Example
local dir = UnitFacing("player");
local dir2 = UnitFacing("target");
ChatFrame1:AddMessage('player orientation: ' .. dir);
ChatFrame1:AddMessage('target orientation: ' .. dir2);
- Result
Prints the player's and target's orientation to the chat frame as 'player orientation: 3.112' and 'target orientation: 0.112'.