-
What do you want to achieve? Keep it simple and clear!
i want the field of view of my cameras to be the same as the current camera. in this way there wont be sudden camera shifts. the issue is i cant change camera field of view to be the same. current camera has a
while any other camera sits at
i can’t even change this on the client in testing. this is not preferable as i end up with a camera shift that isn’t fluid, as shown here.
bumping this as its been a day
Try using a script that copies the properties of the CurrentCamera
and applies it to the other cameras. Example:
local camera = workspace.CurrentCamera
local otherCamera = -- Path to other camera
local properties = {
"DiagonalFieldOfView", "FieldOfView", "FieldOfViewMode", "MaxAxisFieldOfView"
}
for _, property in ipairs(properties) do
otherCamera[property] = camera[property]
end
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.