• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

How do you pan a camera to where it originally was

Status
Not open for further replies.
Level 28
Joined
Sep 26, 2009
Messages
2,520
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