The search keyword must be a single word (no spaces).
Function SetCameraTargetControllerNoZForPlayer
- Line
- 1359
- Location
- blizzard.j
- Constant?
- no
- Type
- function
- Arguments
- player whichPlayer, unit whichUnit, real xoffset, real yoffset, boolean inheritOrientation
- Returns
- nothing
| 1359 | function SetCameraTargetControllerNoZForPlayer takes player whichPlayer, unit whichUnit, real xoffset, real yoffset, boolean inheritOrientation returns nothing |
| 1360 | if (GetLocalPlayer() == whichPlayer) then |
| 1361 | // Use only local code (no net traffic) within this block to avoid desyncs.
|
| 1362 | call SetCameraTargetController(whichUnit, xoffset, yoffset, inheritOrientation) |
| 1363 | endif
|
| 1364 | endfunction
|