RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

AI Module ReferenceBackwards Compatibility Module ReferenceBdebug Module ReferenceBdebugImpl Module ReferenceBeamstate Module ReferenceBullettime Module ReferenceController Module ReferenceDamageTracker Module ReferenceDrivetrain Module ReferenceElectrics Module ReferenceElectrics Custom Value ParserEnergyStorage Module ReferenceExtensions Module ReferenceFire Module ReferenceVehicle Engine True GlobalsGuihooks Module ReferenceGUI Streams Module ReferenceHTML Texture Module ReferenceHydros Module ReferenceInput Module ReferenceJBeam-Lua Integration GuideMapmgr Module ReferenceMaterial Module ReferenceBeamNG Math & Unit Conversions Referenceobj (Vehicle C++ Object)PartCondition Module ReferenceParticlefilter Module ReferenceParticles Module ReferencePowertrain Module ReferenceVehicle Property & Module TreeProps Module ReferenceProtocols Module ReferenceRecovery Module ReferenceScriptAI Module ReferenceSensors Module ReferenceSounds Module ReferenceStreams Module ReferenceThrusters Module Reference`v` (Vehicle Data & JBeam)Wheels Module Reference
Advanced Wheel DebugAero DebugVehicle APIChassis DataCouplingsCruise ControlDrag AIDynamic Vehicle DataDyno ClientESC CalibrationESC MeasurementVehicle Extensions OverviewGameplay InterfaceGameplay StatisticInput AnalyzerMQTT Grafana DemoOdometerOutGaugeOutSimPerfect LaunchPerformance LoggerSimple Trip AppSkeletonStraight LineTelemetry LoggerUT RecorderVehicle Performance DataVehicle Stats Logger

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 Referenceveextensions

Chassis Data

Reports vehicle dimensions including track width, wheelbase, overall length, width, and height. Used by other systems for physics calculations and UI display.

Reports vehicle dimensions including track width, wheelbase, overall length, width, and height. Other systems (like the UI and gameplay modules) query this data for physics calculations and display purposes.


Public API

This extension computes chassis dimensions from JBeam node positions and exposes them as state. It has no callable functions — data is collected automatically during initialization.

Hooks

HookDescription
(auto)Dimensions are computed on vehicle spawn and available via electrics values.

Usage Example

-- Chassis data is automatically available in electrics
local wheelbase = electrics.values.wheelbase
local trackWidth = electrics.values.trackWidth

See Also

  • Dynamic Vehicle Data — Performance testing suite
  • Vehicle Performance Data — Real-time power/torque metrics

Vehicle API

Web-based JSON server for inspecting vehicle nodes, beams, and geometry data. Provides an HTTP endpoint for external tools to query the vehicle's structural information.

Couplings

Manages trailer hitches, fifth-wheel connections, and auto-coupling logic. Handles the attach/detach lifecycle for towed vehicles.

On this page

Public APIHooksUsage ExampleSee Also