The search keyword must be a single word (no spaces).
Function SetUnitFacingToFaceUnitTimed
- Line
- 5049
- Location
- blizzard.j
- Constant?
- no
- Type
- function
- Arguments
- unit whichUnit, unit target, real duration
- Returns
- nothing
| 5049 | function SetUnitFacingToFaceUnitTimed takes unit whichUnit, unit target, real duration returns nothing |
| 5050 | local location unitLoc = GetUnitLoc(target) |
| 5051 | |
| 5052 | call SetUnitFacingToFaceLocTimed(whichUnit, unitLoc, duration) |
| 5053 | call RemoveLocation(unitLoc) |
| 5054 | endfunction
|