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
Align For CouplingApply Velocity to VehicleBoost VehicleSet Vehicle ColorsCustom Parts Config ProviderEnter VehicleFlip UprightFreeze VehicleGenerate License PlateGet Vehicle ActiveGet Electrics ValueGet GearboxmodeGet Powertrain DataGravity ForceDistance From GroundHas Coupler TagIs CoupledIs Player UsableKeep VehicleMove Vehicle ToOn Cannon FiredOn Vehicle DestroyedOn Vehicle ResetOn Vehicle SpawnedOn Vehicle SwitchedPlayer UsableRandom Config ProviderRecover In PlaceRemove VehicleTimeline ReplaySet Vehicle ActiveSet Gearbox ModeSet IgnitionSet License PlateSet LightbarSet LightsShift to Gear IndexSpawn VehicleVehicle StatesTeleport To Last RoadToggle Vehicle ControlsMove To ShowroomVehicle TouchProps TouchStatic Object TouchTrack VehicleTrailer Respawn ControlVehicle Config ProviderGet Vehicle DataGet Vehicle DataGet Vehicle BoundsVehicle PingGet Vehicle Wheel Center

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 Extensionsflowgraphnodesvehicle

Vehicle Config Provider

- **Node Name:** `Vehicle Config Provider`

Overview

  • Node Name: Vehicle Config Provider
  • Category: provider
  • File: extensions/flowgraph/nodes/vehicle/vehicleConfigProvider.lua
  • Behaviour: simple

A provider node that lets the user select a vehicle model and configuration in the editor, then outputs the model/config strings for use by other nodes.

Pin Schema

Output Pins

PinTypeDescription
modelstringThe model key of the selected vehicle (e.g. "pickup").
configstringThe config path of the selected vehicle.
modelNamestringHuman-readable model name (hidden).
configNamestringHuman-readable config name (hidden).

Internals

Key Methods

MethodDescription
init()Initialises empty model/config state.
drawCustomProperties()Uses ui_flowgraph_editor.vehicleSelector() to render the vehicle picker UI.
drawMiddle(builder, style)Shows the model and config names in the node body.
work()Outputs the stored model, configPath, modelName, and configName.
_onSerialize(res)Saves all selection state.
_onDeserialized(nodeData)Restores selection state.

How It Works

  1. In the editor, the user picks a vehicle model and configuration via the built-in vehicle selector UI.
  2. The selected model key, config path, and display names are stored in the node.
  3. At runtime, these values are output as strings for consumption by spawn nodes, comparison logic, etc.

Usage Example

-- Flowgraph:
-- [Vehicle Config Provider] → model  → [Spawn Vehicle]
--                            → config → [Spawn Vehicle]

-- The provider outputs static strings like:
--   model  = "pickup"
--   config = "vehicles/pickup/default.pc"

Key Dependencies

  • ui_flowgraph_editor.vehicleSelector() - editor vehicle/config picker widget

See Also

  • Align for Coupling (Flowgraph Node) - Related reference
  • Apply Velocity to Vehicle (Flowgraph Node) - Related reference
  • Boost Vehicle (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Trailer Respawn Control

- **Node Name:** `Trailer Respawn Control`

Get Vehicle Data

- **Node Name:** `Get Vehicle Data`

On this page

OverviewPin SchemaOutput PinsInternalsKey MethodsHow It WorksUsage ExampleKey DependenciesSee Also