SetUnitFacingToFaceLocTimed
- Parameters
whichUnit unittarget locationduration real- comment
- bug
Leaks handle
unitLoc: In Jass you must set local variables that hold agents (or any child type) tonullat the end of functions to avoid reference counter leaks.- patch
1.00
- Source
- Blizzard.j (suggest an edit or discuss on Github)
- return type
nothing- Source code
function SetUnitFacingToFaceLocTimed takes unit whichUnit, location target, real duration returns nothing local location unitLoc = GetUnitLoc(whichUnit) call SetUnitFacingTimed(whichUnit, AngleBetweenPoints(unitLoc, target), duration) call RemoveLocation(unitLoc) endfunction