How can i edit this Camera system

Status
Not open for further replies.
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.
Back
Top