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

Vehicle Performance Data

Real-time capture of power, torque, acceleration, and speed metrics. Supports both continuous recording and static snapshot measurement types.

Real-time capture of power, torque, acceleration, and speed metrics. Supports both continuous recording (for dyno runs, drag strips) and static snapshot measurement types (peak values, current state).


Public API

VariableTypeDescription
recordingTypestableRegistry of available continuous recording measurement types.
staticTypestableRegistry of available static/snapshot measurement types.

Hooks

HookDescription
updateGFXRuns each graphics frame to sample powertrain data and update recording buffers.

Usage Example

-- Load the extension
extensions.load("vehiclePerformanceData")

-- Access available recording types
local types = extensions.vehiclePerformanceData.recordingTypes

See Also

  • Dynamic Vehicle Data — Automated performance testing suite
  • Dyno Client — Dyno roller data streaming
  • Combustion Engine — Engine torque data source

UT Recorder

Records vehicle state data for playback within the Game Engine's replay system. Sends position, velocity, and input data to GE each frame for synchronized recording.

Vehicle Stats Logger

Configurable CSV logging system for research and data analysis. Allows custom selection of vehicle data channels to record at specified intervals.

On this page

Public APIHooksUsage ExampleSee Also