I would only like to know why the camera.sqs isn't able to target a unit, only coordinates? This for example doesn't work:
;=== 13:49:34
_camera camSetTarget [unit1]
_camera camSetPos [9413.33,1358.22,2.00]
_camera camSetFOV 0.700
_camera camCommit 0
@camCommitted _camera
And oh! It does work if you change the name of the camera to
let's say cam:
_cam = "camera" camcreate [0,0,0]
_cam cameraeffect ["internal", "back"]
;=== 13:49:34
_cam camSetTarget [unit1]
_cam camSetPos [9413.33,1358.22,2.00]
_cam camSetFOV 0.700
_cam camCommit 0
@camCommitted _cam
So I don't need any solutions to that.