AdjustCameraBoundsForPlayerBJ
- Parameters
-
adjustMethod integer
whichPlayer player
dxWest real
dxEast real
dyNorth real
dySouth real
- comment
- patch
1.00
- Source
- Blizzard.j
- return type
nothing
- Source code
function AdjustCameraBoundsForPlayerBJ takes integer adjustMethod, player whichPlayer, real dxWest, real dxEast, real dyNorth, real dySouth returns nothing if (GetLocalPlayer() == whichPlayer) then // Use only local code (no net traffic) within this block to avoid desyncs. call AdjustCameraBoundsBJ(adjustMethod, dxWest, dxEast, dyNorth, dySouth) endif endfunction