• 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 can i edit this Camera system

Status
Not open for further replies.
Level 37
Joined
Mar 6, 2006
Messages
9,243
First try adding this to map initialization.
  • Camera - Set Player 1 (Red)'s camera Far Z to 3000.00 over 0.00 seconds
But if the camera is reset at some point you have to set the far-z again.

Otherwise you can add this line after all the other call SetCameraField lines.
JASS:
call SetCameraField( CAMERA_FIELD_FARZ, 3000.00, DELAY )
But that's not efficient since far-z doesn't need to be adjusted that often, like angle of attack and rotation might be for example. But it's a fail-safe way.
 
Status
Not open for further replies.
Top