CameraSetupApplyForPlayerSmooth

Parameters
doPan boolean
whichSetup camerasetup
whichPlayer player
forcedDuration real
easeInDuration real
easeOutDuration real
smoothFactor real
return type
nothing
Source code
function CameraSetupApplyForPlayerSmooth takes boolean doPan, camerasetup whichSetup, player whichPlayer, real forcedDuration, real easeInDuration, real easeOutDuration, real smoothFactor returns nothing
    if (GetLocalPlayer() == whichPlayer) then
        // Use only local code (no net traffic) within this block to avoid desyncs.
        call BlzCameraSetupApplyForceDurationSmooth(whichSetup, doPan, forcedDuration, easeInDuration, easeOutDuration, smoothFactor)
    endif
endfunction
Source
Blizzard.j
wc3modding.com
CameraSetupApplyForPlayerSmooth