SetUnitPositionLocFacingLocBJ

Parameters
whichUnit unit
loc location
lookAt location
comment
patch

1.00

Source
Blizzard.j
return type
nothing
Source code
function SetUnitPositionLocFacingLocBJ takes unit whichUnit, location loc, location lookAt returns nothing
    call SetUnitPositionLoc(whichUnit, loc)
    call SetUnitFacing(whichUnit, AngleBetweenPoints(loc, lookAt))
endfunction