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

Function SetCameraFieldForPlayer

Line
1351
Location
blizzard.j
Constant?
no
Type
function
Arguments
player whichPlayer, camerafield whichField, real value, real duration
Returns
nothing
1351
function SetCameraFieldForPlayer takes player whichPlayer, camerafield whichField, real value, real duration returns nothing
1352
    if (GetLocalPlayer() == whichPlayer) then
1353
        // Use only local code (no net traffic) within this block to avoid desyncs.
1354
        call SetCameraField(whichField, value, duration)
1355
    endif
1356
endfunction