• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

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