• 🏆 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!

How do you pan a camera to where it originally was

Status
Not open for further replies.
Level 25
Joined
Sep 26, 2009
Messages
2,378
You create point variable using variable editor (you access it by clicking the golden "X" button in the trigger editor window).

  • Set loc = (Target of current camera view)
  • ... cinematic actions here...
  • ... once cinematic ends...
  • Camera - Pan camera for Player 1 (Red) to loc over 2.00 seconds
  • Custom script: call RemoveLocation(udg_loc)
Basically like this. I named the point variable "loc".
Note how I destroyed the location using the custom script. It's important (most of the time) to destroy saved locations, else they pile up and eventually slow down your game (or freeze it)
 
Status
Not open for further replies.
Top