RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

Server CommandsGE UtilitiesGame Engine MainNavigation GraphScreenshot CaptureServerServer ConnectionSpawnpoint ManagerSimulation TimeVehicle SpawningSuspension Frequency Tester
Flowgraph Base ModuleFlowgraph Base NodeFlowgraph Base State NodeFlowgraph Node BuilderFlowgraph GraphFlowgraph Group HelperFlowgraph LinkFlowgraph ManagerNew Node TemplateFlowgraph PinFlowgraph States ManagerFlowgraph UtilsFlowgraph Variable Storage
Collection Marker (Flowgraph Node)Custom Lua Command (Flowgraph Node)Get Object Field (Flowgraph Node)Get Player Vehicle ID (Flowgraph Node)Get Point on Decalroad (Flowgraph Node)Show/Hide Object (Flowgraph Node)ID by Name (Flowgraph Node)Keep Prefab (Flowgraph Node)Particle Emitter (Flowgraph Node)Point on Decalroad (Flowgraph Node)Raceline Parking (Flowgraph Node)Raycast (Flowgraph Node)Parking Markers / Rect Marker (Flowgraph Node)Reload Collision (Flowgraph Node)Reload Nav Graph (Flowgraph Node)Remove Prefab (Flowgraph Node)Reset Prefab (Flowgraph Node)Set Object Field (Flowgraph Node)Sevensegment Display (Flowgraph Node)Single Marker (Flowgraph Node)Spawn Light / SpotLight (Flowgraph Node)Spawn Prefab (Flowgraph Node)Spawn TSStatic (Flowgraph Node)Store Statics (Flowgraph Node)Track Prefab (Flowgraph Node)
Camera Transform (Flowgraph Node)Camera Look at Position (Flowgraph Node)Camera Auto Circle (Flowgraph Node)Simple Cam Path (Flowgraph Node)Get Camera FOV (Flowgraph Node)Get Camera Mode (Flowgraph Node)Get Cam Path (Flowgraph Node)Restart Cam Path (Flowgraph Node)Return Camera to Vehicle (Flowgraph Node)Set Camera FOV (Flowgraph Node)Set Camera Mode (Flowgraph Node)Set Camera Position (Flowgraph Node)Set Camera Rotation (Flowgraph Node)Start Cam Path (Flowgraph Node)Stop Cam Path (Flowgraph Node)

UI

Resources

BeamNG Game Engine Lua Cheat SheetGE Developer RecipesMCP Server Setup

// RLS.STUDIOS=true

Premium Mods for BeamNG.drive. Career systems, custom vehicles, and immersive gameplay experiences.

Index

HomeProjectsPatreon

Socials

DiscordPatreon (RLS)Patreon (Vehicles)

© 2026 RLS Studios. All rights reserved.

Modding since 2024

API ReferenceGE Extensionsflowgraphnodesscenecamera

Get Camera FOV (Flowgraph Node)

- **Node Name:** `Get Camera FOV`

Overview

  • Node Name: Get Camera FOV
  • Category: repeat_instant
  • File: extensions/flowgraph/nodes/scene/camera/getCameraFOV.lua

Gets the camera's current Field of View (FOV) as an angle in degrees. Automatically switches to free camera if not already active.

Pin Schema

Output Pins

PinTypeDescription
curFOVnumberThe current FOV as an angle in degrees

Behavior

  • work() - Called every frame:
    1. If the camera is not in free camera mode, switches to it via commands.setFreeCamera().
    2. Reads the current FOV using core_camera.getFovDeg() and outputs it.
  • drawMiddle() - Displays the current FOV value in the node editor UI.

Key Dependencies

  • commands.isFreeCamera() / commands.setFreeCamera() - Free camera detection and activation
  • core_camera.getFovDeg() - Returns current FOV in degrees

How It Works

This is a simple provider node that continuously outputs the current camera FOV. It forces free camera mode because FOV reading is only meaningful in that context.

Example Usage

-- Use in flowgraph to read FOV and conditionally adjust scene elements
-- Wire curFOV output to a comparison node to check if FOV is within a range
-- Pair with Set Camera FOV to create smooth FOV transitions

See Also

  • Camera Transform (Flowgraph Node) - Related reference
  • Camera Look at Position (Flowgraph Node) - Related reference
  • Camera Auto Circle (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Simple Cam Path (Flowgraph Node)

- **Node Name:** `Simple Cam Path`

Get Camera Mode (Flowgraph Node)

- **Node Name:** `Get Camera Mode`

On this page

OverviewPin SchemaOutput PinsBehaviorKey DependenciesHow It WorksExample UsageSee Also