• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

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

Status
Not open for further replies.
Level 12
Joined
Mar 13, 2012
Messages
1,121
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)
 

sentrywiz

S

sentrywiz

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.
Top