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.