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

Status
Not open for further replies.
Level 37
Joined
Mar 6, 2006
Messages
9,240
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