The search keyword must be a single word (no spaces).
Function SetCameraPositionForPlayer
- Line
- 1367
- Location
- blizzard.j
- Constant?
- no
- Type
- function
- Arguments
- player whichPlayer, real x, real y
- Returns
- nothing
| 1367 | function SetCameraPositionForPlayer takes player whichPlayer, real x, real y returns nothing |
| 1368 | if (GetLocalPlayer() == whichPlayer) then |
| 1369 | // Use only local code (no net traffic) within this block to avoid desyncs.
|
| 1370 | call SetCameraPosition(x, y) |
| 1371 | endif
|
| 1372 | endfunction
|