The search keyword must be a single word (no spaces).

Function PanCameraToTimedLocForPlayer

Line
1415
Location
blizzard.j
Constant?
no
Type
function
Arguments
player whichPlayer, location loc, real duration
Returns
nothing
1415
function PanCameraToTimedLocForPlayer takes player whichPlayer, location loc, real duration returns nothing
1416
    if (GetLocalPlayer() == whichPlayer) then
1417
        // Use only local code (no net traffic) within this block to avoid desyncs.
1418
        call PanCameraToTimed(GetLocationX(loc), GetLocationY(loc), duration)
1419
    endif
1420
endfunction