Page 1 of 1

Changing camera position [solved]

Posted: Fri May 08, 2015 11:58 am
by DrDrSheldonLeeCooper
How can I change the camera position like here :
Hidden/Spoiler:
Image
?

Re: Changing camera position

Posted: Fri May 08, 2015 12:40 pm
by thelegend
Hidden/Spoiler:
CAMERASECTION = "STAND"
EyePointOffset = "0.0 1.8 0.0"
TrackCenter = "0.0 1.8 0.0
TrackOffset = "0.0 0.0 3.2"
TiltValue = "10.0"

CAMERASECTION = "STANDZOOM"
EyePointOffset = "0.0 1.8 0.0"
TrackCenter = "0.0 1.8 0.0
TrackOffset = "0.4 0.05 2.8"
TiltValue = "3.5"

CAMERASECTION = "CROUCH"
EyePointOffset = "0.0 1.3 0.0"
TrackCenter = "0.0 1.3 0.0
TrackOffset = "0.0 0.15 3.0"
TiltValue = "10.0"
CameraBlendTime = "0.75"

CAMERASECTION = "CROUCHZOOM"
EyePointOffset = "0.0 1.3 0.0"
TrackCenter = "0.0 1.3 0.0
TrackOffset = "0.4 0.2 2.8"
TiltValue = "3.5"

CAMERASECTION = "PRONE"
EyePointOffset = "0.0 0.5 0.0"
TrackCenter = "0.0 0.5 0.0"
TrackOffset = "0.0 0.0 3.0"
TiltValue = "5.0"
CameraBlendTime = "1.0"

CAMERASECTION = "PRONEZOOM"
EyePointOffset = "0.0 0.5 0.0"
TrackCenter = "0.0 0.5 0.0"
TrackOffset = "0.4 0.2 2.8"
TiltValue = "3.5"

CAMERASECTION = "SPRINT"
EyePointOffset = "0.0 1.8 0.0"
TrackCenter = "0.0 1.8 0.0
TrackOffset = "0.0 0.0 4.0"
TiltValue = "10.0"
CameraBlendTime = "0.75"
You can add these lines into your unit's odf and change the values as you want. I always edit this line:

Code: Select all

TrackCenter         	= "0.0 1.8 0.0
(Or the line above, can't remember).

0.0 = X, 1.8 =Y, 0.0 =Z

It might help to try different values to get different outcomes. Only if you don't know hot to set them properly.

Re: Changing camera position

Posted: Fri May 08, 2015 12:42 pm
by DrDrSheldonLeeCooper
I will try,thanks :)