RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

Server CommandsGE UtilitiesGame Engine MainNavigation GraphScreenshot CaptureServerServer ConnectionSpawnpoint ManagerSimulation TimeVehicle SpawningSuspension Frequency Tester
Editor AI TestsEditor AI VisualizationEditor – Assembly Spline ToolAsset BrowserAsset DeduplicatorAsset Management ToolSFX Previewer (Audio Events List)Audio Ribbon EditorAutoSaveBarriers EditorBiome ToolBuilding EditorBulk RenameCamera BookmarksCamera TransformCamera Path EditorCEF HelperCo-Simulation Signal EditorCrawl Data EditorCreate Object ToolDataBlock EditorDecal EditorDecal Spline EditorDocumentation HelperDrag Race EditorDrift Data EditorDrive Path EditorDynamic Decals Tool (Vehicle Livery Creator)Engine Audio DebugExtensions DebugExtensions EditorFFI Pointer Leak TestFile DialogFlowgraph EditorForest EditorForest ViewEditor Gizmo HelperEditor Ground Model Debug HelperEditor Headless Editor TestEditor Icon OverviewEditor ImGui C DemoEditor InspectorEditor Layout ManagerEditor Level SettingsEditor Level ValidatorEditor LoggerEditor Log HelperEditor MainEditor Main MenuEditor Main ToolbarEditor Main UpdateMap Sensor EditorMaster Spline EditorMaterial EditorMeasures Inspector HeaderMesh Editor (Base)Mesh Road EditorMesh Spline EditorMission EditorMission PlaybookMission Start Position EditorMulti Spawn Manager (Vehicle Groups)Navigation Mesh EditorEditor News MessageObject Tool (Object Select Edit Mode)Object To Spline EditorParticle EditorPerformance Profiler / Camera RecorderPhysics ReloaderPrefab Instance EditorEditor PreferencesRace / Path EditorRally EditorRaycast Test Editor ToolRenderer Components Editor ToolRender Test Editor ToolResource Checker Editor ToolRiver EditorRoad Architect EditorRoad DecorationsRoad Editor (Decal Road)Road Network ExporterRoad River Cache HandlerRoad River GUIRoad Spline EditorRoad Template EditorRoad UtilitiesScene TreeScene ViewScreenshot Creator BootstrapScript AI EditorScript AI ManagerSensor Configuration EditorSensor DebuggerShape EditorShortcut LegendSidewalk Spline EditorSites EditorSlot Traffic EditorSuspension Audio DebugTech Server ManagerTerraform ToolTerrain And Road ImporterTerrain EditorTerrain Materials EditorText EditorTool ManagerTool ShortcutsTraffic DebugTraffic ManagerTraffic Signals EditorUndo History ViewerVehicle Bridge TestVehicle Detail ViewerVehicle Editor MainEditor - VisualizationEditor Viz HelperEditor Water Object HelperEditor Windows Manager
Flowgraph Base WindowFlowgraph EventsFlowgraph ExamplesFlowgraph Execution (Task Manager)Flowgraph Garbage DebugFlowgraph HistoryFlowgraph LegendFlowgraph Main WindowFlowgraph Mission Variable HelperFlowgraph Node LibraryFlowgraph Node PreviewFlowgraph OverviewFlowgraph Project SettingsFlowgraph PropertiesFlowgraph References WindowFlowgraph Search WindowFlowgraph State View WindowFlowgraph Variables WindowFlowgraph Welcome Window

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 Extensionseditorflowgraph

Flowgraph Properties

Flowgraph Properties panel for inspecting and editing selected node data, pin configurations, hardcoded values, custom properties, and graph metadata.

Flowgraph Properties panel for inspecting and editing selected node data, pin configurations, hardcoded values, custom properties, and graph metadata.


Overview

fg_properties is the main inspector for the flowgraph editor. When a single node is selected, it shows the node header (with customizable name, icon, color), custom properties, data fields, and detailed input/output pin lists. Pins can be hidden, hardcoded to constant values, retyped, renamed (if custom), reordered, and deleted. When no node is selected, it shows graph properties (name, description, type, children, parent). Supports all flowgraph data types: number, string, bool, vec3, quat, color (including vehicle 8-component color), and table.


Class Fields

FieldTypeDescription
C.windowNamestring'fg_properties'
C.windowDescriptionstring'Properties'

Class Methods

MethodDescription
C:init()Registers window (visible by default), loads header texture
C:draw(dt)Main draw: node properties or graph properties
C:drawItemHeader(item)Renders colored header with editable name/icon/color
C:drawItemProperties(itemType, item)Renders data table + input/output pins
C:drawInPins(item)Standard input pin list with type icons and hardcode support
C:drawOutPins(item)Standard output pin list with values
C:drawCustomInPins(item)Editable input pins (rename, retype, delete, reorder)
C:drawCustomOutPins(item)Editable output pins
C:drawGraphProperties(graph)Graph name, description, type, children, parent, actions
C:drawHardTemplates(pin, item)Dropdown for pin value presets and file selection
C:initCustomProperties(item)Initialize name/icon/color edit fields
C:customPropertyColor(item, name, cdata)Color picker for custom node properties
C:unselect()Clean up when selection changes

Pin Editing Features

FeatureDescription
HardcodeClick pin icon to lock a constant value (bypass links)
Un-hardcodeClick lock icon to restore normal pin mode
Hide/ShowToggle pin visibility (only when unlinked)
RetypeChange pin data type via combo (custom pins only)
RenameEdit pin name with Enter to confirm
ReorderUp/Down buttons shift pin position
TemplatesDropdown with predefined values or file selection
Quick TypeFor any pins, select hardcode type from simple types

Data Type Input Widgets

TypeWidget
numberFloat/Int input or slider (configurable via numericSetup)
stringText input + multiline popup button
boolCheckbox
vec33-float input
quat4-float input
colorColor picker (4-component or 8-component vehicle color with PBR)
tableKey-value table editor (limited support)

Usage Example

-- Properties panel automatically shows for selected nodes
-- Hardcoding a pin programmatically:
node:_setHardcodedDummyInputPin(pin, "myValue")

-- Custom properties are drawn by node:drawCustomProperties(dt)
-- Returns a reason string for history tracking

Internal Methods

MethodDescription
C:_drawInputField(path, cdata, type, v, savePath, saveCallback, enterOnly, padRight, pin)Renders appropriate input widget for a given data type
C:_drawDataTable(path, cdata, v, savePath, saveCallback, keysEditable)Renders a key-value table editor
C:getFirstAllowedType(types)Returns first allowed pin type from a type table, defaults to 'bool'
C:showAvailableMacroTags()Renders editable macro tag list with rename/delete

Module-Level Variables

VariableDefaultDescription
C.dirtyChildrennilTracks dirty child state
previousNodenilModule-level reference to previously selected node (for hide/show lifecycle)

See Also

  • Flowgraph Base Window - Related reference
  • Flowgraph Events - Related reference
  • Flowgraph Examples - Related reference
  • World Editor Guide - Guide

Flowgraph Project Settings

Flowgraph manager window for editing project metadata: name, description, author, difficulty, scenario flag, and save location.

Flowgraph References Window

Provides a node reference browser for the flowgraph editor, showing usage statistics across all flowgraph projects.

On this page

OverviewClass FieldsClass MethodsPin Editing FeaturesData Type Input WidgetsUsage ExampleInternal MethodsModule-Level VariablesSee Also