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
Adaptive Cruise Control (ACC)ADAS InputADAS UltrasonicAdvanced IMUDump Player InputGPS SensorIdeal RADAR SensorMesh SensorOBD EmulatorPlatooningPowertrain SensorRoads SensorTechCore Module ReferenceTrail SimTyre BarrierVehicle Points of InterestVehicle SearcherVehicle Systems CouplingWheel Forces

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 Referenceveextensionstech

Advanced IMU

Simulated Inertial Measurement Unit providing acceleration, angular velocity, and orientation data. Supports multiple simultaneous IMU instances at configurable positions.

Simulated Inertial Measurement Unit (IMU) providing acceleration, angular velocity, and orientation data. Supports multiple simultaneous IMU instances at configurable vehicle positions with adjustable update rates and noise models.


Public API

FunctionSignatureDescription
create(data)Creates a new IMU sensor instance at the specified position with given configuration (update rate, noise).

Usage Example

-- Create an IMU at the vehicle's center of gravity
extensions.tech_advancedIMU.create({
  pos = {0, 0, 0.5},
  updateTime = 0.01,  -- 100 Hz
})

See Also

  • GPS — Position/velocity sensor
  • TechCore — External API that polls IMU data
  • ESC Measurement — Driving dynamics analysis

ADAS Ultrasonic

Simulated ultrasonic sensor array for parking assistance and blind spot detection. Provides distance measurements from multiple sensor positions around the vehicle.

Dump Player Input

Debug extension that logs all player input values (throttle, brake, steering, clutch) each frame. Useful for input calibration and replay analysis.

On this page

Public APIUsage ExampleSee Also