WoW:API TurnLeftStop: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
<center>'''TurnLeftStop''' ''-Documentation by AlexanderYoshi-''</center>
{{wowapi}}
 
{{protectedapi|1.10|}}
The player stops turning left at the specified time.
The player stops turning left at the specified time.


  TurnLeftStop(startTime);
  TurnLeftStop(stopTime);


----
----
;''Arguments''
;''Arguments''
 
:
:(Number stopTime)
:;stopTime : Stop turning left at this time.
 
:;stopTime : Stop turning left at this time


----
----
Line 27: Line 25:


: The player stops turning left at the specified time. Units are thousandths of a second, current time is GetTime() * 1000, so TurnLeftStop(GetTime()*1000 + 2000); would cause you to stop turning left in two seconds' time.  
: The player stops turning left at the specified time. Units are thousandths of a second, current time is GetTime() * 1000, so TurnLeftStop(GetTime()*1000 + 2000); would cause you to stop turning left in two seconds' time.  
 
: As of 1.6, the time parameter seems to be ignored, and this function needs to be called as the result of a button press.
As of 1.6, the time parameter seems to be ignored, and this function needs to be called as the result of a button press.
 
As of 1.10, calling this function causes the addon to generate UI errors.  This can no longer be used effectively.
----
{{Template:WoW API}}

Revision as of 11:53, 18 June 2006

WoW API < TurnLeftStop

The player stops turning left at the specified time.

TurnLeftStop(stopTime);

Arguments
stopTime
Stop turning left at this time.

Returns
nil

Example
TurnLeftStop(GetTime()*1000 + 2000);
Result

Description
The player stops turning left at the specified time. Units are thousandths of a second, current time is GetTime() * 1000, so TurnLeftStop(GetTime()*1000 + 2000); would cause you to stop turning left in two seconds' time.
As of 1.6, the time parameter seems to be ignored, and this function needs to be called as the result of a button press.