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
4WD / Transfer Case ControllerAdvanced Coupler ControlAirplane Control SurfacesAxle Lift ControllerBeacon Spin ControllerBeam NavigatorBypass Dampers ControllerController TemplateControl ModesDrag TimerDrive ModesDummy ControllerElectronic Stability Control (ESC)ETK Gauges ControllerVehicle Controllers OverviewHydraulic Suspension ControllerInput/Output Demo ControllerJATO (Jet Assisted Take-Off)Lightbar ControllerLine LockLogger TemplateNitrous Oxide InjectionPlayer ControllerPneumatics System ControllerPower Steering ControllerPyrotechnic Charge ControllerSBR Gauges ControllerShift Lights ControllerTire Pressure ControlTrailer Landing Feet ControllerTwo-Step Launch ControlVivace Gauges ControllerWendover Gauges Controller
Advanced IMU SensorCo-Simulation CouplingGPS SensorIdeal RADAR SensorMesh SensorMQTT Output ControllerPowertrain SensorData RecordersRoads SensorTech Screens ControllerTyre Barrier ControllerVehicle Systems Coupling

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 Referencevecontrollertech

Advanced IMU Sensor

BeamNG.tech inertial measurement unit providing high-frequency acceleration, angular velocity, and orientation data. Simulates a 6-DOF IMU with configurable noise, bias, and update rates for realistic sensor modeling.

BeamNG.tech inertial measurement unit providing high-frequency acceleration, angular velocity, and orientation data. Simulates a 6-DOF IMU with configurable noise, bias, and update rates for realistic sensor modeling.


Public API

FunctionDescription
getSensorData()Returns all buffered raw readings since the last poll, along with current timing state.
getLatest()Returns the single most recent IMU snapshot (acceleration, angular velocity, orientation).
setIsUsingGravity(value)Configures the sensor's gravity compensation logic.
setIsVisualised(value)Toggles debug visualization.
incrementTimer(dtSim)Internal timer update used to synchronize polling intervals.

Hooks

HookDescription
init(data)Initializes the IMU sensor instance.
reset()Clears all buffered readings and resets polling timers.
update(dtSim)Physics step handler. Calculates precise acceleration and rotation based on the motion of the sensor's triangle attachment nodes.

See Also

  • GPS Sensor — GPS positioning
  • Powertrain Sensor — Powertrain telemetry

Reverse Warning Sound Controller

Controls the audible reverse warning beeper that activates when the vehicle is in reverse gear. Manages beep timing, volume, and activation conditions.

Co-Simulation Coupling

Interface for connecting BeamNG.tech to external simulation environments. Enables synchronized data exchange with tools like MATLAB/Simulink, CarMaker, or custom co-simulation frameworks via shared memory or network protocols.

On this page

Public APIHooksSee Also