GE Lua Documentation

Press F to search!

setCameraFov

Definition


-- @/lua/ge/server/commands.lua:180

function setCameraFov(fovDeg)
  deprecationWarning("setCameraFov", "core_camera.setFOV")
  if not isFreeCamera() then return end
  core_camera.setFOV(0, fovDeg)
end

Callers