[General] Is it possible to lock camera within a certain area?

Status
Not open for further replies.
For completely locking camera you could lock it on an invisible dummy.

If you want that a certain rectangle remains, use
  • Camera - Shrink the camera bounds for Player 1 (Red) west by x, east by x, north by x, and south by x
or use the direct JASS version in connection with a GetLocalPlayer() block:
JASS:
SetCameraBounds(minX, minY, minX, maxY, maxX, maxY, maxX, minY)
 
Yep. Just create a camera, rotate it to your desire and save it.

Then in triggers make a trigger that will call upon that camera for X player every X seconds
 
Status
Not open for further replies.
Back
Top