Home   Help Search Login Register  

Author Topic: 'Inbetween frames in cutscenes  (Read 781 times)

0 Members and 1 Guest are viewing this topic.

Cellie

  • Guest
'Inbetween frames in cutscenes
« on: 25 Feb 2005, 09:57:28 »
I have a small problem. I am making a cutscene, but every camera movement (even set with camcommit 0) have an 'inbetween' frame with each camera setting.

some of my code:

setacctime 1.0
_cam = "camera" CamCreate [_camx+5,_camy+50,_camz+5]
_cam camsettarget rfl_truck
_cam CameraEffect ["Internal","Back"]
_cam camcommit 0
@camcommitted _cam
~12
_cam camsettarget rfl_grp
_cam camSetRelPos [1,1,1]
_cam camcommit 0
@camcommitted _cam
~10
_cam CameraEffect ["Terminate","Back"]
CamDestroy _cam
Cuttext["","BLACK IN",2]

So in this example right at every @camcommited I see a 'inbetween' frame.
ie. You see the camera at its new location (1 frame) and then it goes to its final (set by me) location.

Am I missing something here? It is fu**in ugly as it is now.

Offline nominesine

  • Former Staff
  • ****
  • I'm NOT back!
    • The IKB Forum
Re:'Inbetween frames in cutscenes
« Reply #1 on: 25 Feb 2005, 10:52:11 »
Not sure if it will help but here's a suggestion. You have given the camera a target before you specified what type of camera you are using in these lines:

_cam camsettarget rfl_truck
_cam CameraEffect ["Internal","Back"]

Try doing it the other way around and change the code to:

_cam CameraEffect ["Internal","Back"]
_cam camsettarget rfl_truck
OFPEC | Intel Depot
RETARDED Ooops... Retired!

bored_onion

  • Guest
Re:'Inbetween frames in cutscenes
« Reply #2 on: 25 Feb 2005, 18:05:24 »
i read somewhere that the @ command often has complications. maybe you could just reiterate what unit you want it to be looking at.

Offline XCess

  • Former Staff
  • ****
Re:'Inbetween frames in cutscenes
« Reply #3 on: 25 Feb 2005, 23:15:35 »
loose the @camCommited they're almost conpletely useless