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

Mesh Sensor

Provides access to the vehicle's deformable mesh data including node positions, velocities, and beam states. Used for crash analysis and structural monitoring.

Provides access to the vehicle's deformable mesh data including node positions, velocities, and beam states. Used for crash analysis, structural monitoring, and research applications that need detailed mesh deformation data.


Public API

FunctionSignatureDescription
create(data)Creates a new mesh sensor instance with the given configuration.
setUpdateTime(sensorId, GFXUpdateTime)Sets the update interval for the specified mesh sensor.

Hooks

HookDescription
updateGFXCollects current mesh state data at the configured update interval.

Usage Example

-- Create a mesh sensor
local id = extensions.tech_mesh.create({
  updateTime = 0.1,
})

-- Adjust update rate
extensions.tech_mesh.setUpdateTime(id, 0.05)

See Also

  • TechCore — External API that polls mesh data
  • Damage Evaluation — Crash damage analysis
  • Skeleton — Visual node/beam debug overlay

Ideal RADAR Sensor

Simulated ideal radar sensor that detects other vehicles within a configurable cone. Returns distance, relative velocity, and bearing to detected objects.

OBD Emulator

Emulates an OBD-II (On-Board Diagnostics) interface. Responds to standard OBD PIDs with simulated vehicle data, enabling real OBD scan tools to read BeamNG vehicle parameters.

On this page

Public APIHooksUsage ExampleSee Also