Creating new preset for Cinematic Mode

In order to add new camera preset you need to understand basics of the offset.

Focus

Focus object is basically the point where camera should look at.

Coords

Coords object is the part where camera should be created.

XYZ Offsets

Offset
Description

X

Determines left/right offset Above 0 is right Less than 0 is left

Y

Determines forward/backward offset Above 0 is forward Less than 0 is backward

Z

Determines up/down offset Above 0 is up Less than 0 is down

Adding new preset

Simple as that you need to copy the object and follow with the schema:

Config.CinematicPresets[9] = { -- make sure to set ascending key!
    focus = {
        x = 0.0,
        y = .0,
        z = .6
    },
    coords = {
        x = 0.0,
        y = 2.35,
        z = -.4
    },
    fov = 35.0
}

Last updated