Jump to content
Sign in to follow this  
Dragster

making a camera zoom to 1person view?

Recommended Posts

im trying to make a small scene where i want the camera to zoom towards the a unit and end up in 1 personview.

i think this should be possible with the camera view script _loon1 switchCamera "internal" but i have no idea where in the scene.sqs im making it should be for it to work

so far it looks somthing like this

_camera="camera" camcreate [0,0,0]

_camera cameraeffect ["internal", "back"]

showCinemaBorder false;

;=== 11:16:39

_camera camPrepareTarget [-24976.61,83766.95,-52902.32]

_camera camPreparePos [9384.48,6369.02,15.36]

_camera camPrepareFOV 0.700

_camera camCommitPrepared 0

@camCommitted _camera

;=== 11:16:56

_camera camPrepareTarget [-23738.62,86776.91,-49119.66]

_camera camPreparePos [9377.80,6384.93,2.46]

_camera camPrepareFOV 0.700

_camera camCommitPrepared 10

@camCommitted _camera

;=== 11:33:00

_camera camPrepareTarget [-53012.85,78458.08,-30053.58]

_camera camPreparePos [9378.33,6384.96,2.32]

_camera camPrepareFOV 0.700

_camera camCommitPrepared 5

@camCommitted _camera

~10

Player cameraeffect ["terminate","back"]

camdestroy_camera

end1=true

exit;

how do i get the camera to switch into internal cameraView in the third camera position??

Share this post


Link to post
Share on other sites

This might help you....

//Quick fade-in on internal point of view of the next unit

_camera camSetTarget _unit;

vehicle _unit switchCamera "INTERNAL";

_unit cameraEffect ["terminate","back"];

titlecut [" ","black in",3];

camDestroy _camera;

Where "_unit" is the dude you want to end up in.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×