Home   Help Search Login Register  

Author Topic: camera.sqs problems  (Read 489 times)

0 Members and 1 Guest are viewing this topic.

KoniaX

  • Guest
camera.sqs problems
« on: 09 Aug 2004, 07:58:47 »
errr I'm not sure if this is even allowed or in the right section, but I noticed you locked Messiahs Camera.sqs tutorial thread, so here goes. I am familiar with cutscenes, I can make them easily. I just found out about the camera.sqs thingy, and was exicted to try it out. I do all the things in Messiahs tute, then when I preview it, I get a lovely view of the ocean. I try again, doing some different things, and once again, the ocean. Am I doing something wrong? Heres my code so far.

Quote
EnableRadio False
titlecut [" ","Black In",4]
_cam  = "camera" camcreate [0,0,0]
_cam cameraeffect ["internal", "top"]
;=== 23:12:31
_cam camsettarget Varlam
_cam camsetrelpos [5,5,5]
_cam camcommit 0
@camcommitted _cam
~5
_camera camSetTarget [-27294.00,-89645.14,5.75]
_camera camSetPos [8444.55,3758.72,1.69]
_camera camSetFOV 0.700
_camera camCommit 0
@camCommitted _camera
~6
;=== 23:15:40
_camera camSetTarget [30453.67,101278.05,331.35]
_camera camSetPos [8438.29,3732.66,0.31]
_camera camSetFOV 0.700
_camera camCommit 0
@camCommitted _camera
~1
;=== 23:16:35
_camera camSetTarget [-91506.30,1247.62,-1625.98]
_camera camSetPos [8449.41,3722.39,0.05]
_camera camSetFOV 0.700
_camera camCommit 0
@camCommitted _camera
~2
;=== 23:17:02
_camera camSetTarget [-38770.11,-83380.80,13544.32]
_camera camSetPos [8449.41,3722.39,0.05]
_camera camSetFOV 0.700
_camera camCommit 2
@camCommitted _camera

Gooner861

  • Guest
Re:camera.sqs problems
« Reply #1 on: 09 Aug 2004, 08:03:26 »
Hi there  ;D ,

Ur just making a general mistake i made wen i first started out:

Quote
_cam  = "camera" camcreate [0,0,0]
_cam cameraeffect ["internal", "top"]

You have the beginning with _cam.

Quote
_camera camSetTarget [-27294.00,-89645.14,5.75]
_camera camSetPos [8444.55,3758.72,1.69]
_camera camSetFOV 0.700
_camera camCommit 0
@camCommitted _camera
~6

And than u have the rest of the script written with _camera at the start.

Change it so that the start of each line has either _cam or _camera.

Hope that helps  ;D

Gooner


KoniaX

  • Guest
Re:camera.sqs problems
« Reply #2 on: 09 Aug 2004, 08:37:01 »
bwahahaha! thank you very much!