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

ADAS Input

Routes Advanced Driver Assistance System inputs to the vehicle's control systems. Allows external ADAS algorithms to provide throttle, brake, and steering commands.

Routes Advanced Driver Assistance System (ADAS) inputs to the vehicle's control systems. Allows external ADAS algorithms (running via TechCore or CAN bus) to provide throttle, brake, and steering commands that override normal player input.


Public API

FunctionSignatureDescription
applyAdasInput(val, key)Applies an ADAS input value for the specified control key (throttle, brake, steering).

Usage Example

-- Apply ADAS steering command
extensions.tech_adasInput.applyAdasInput(0.15, "steering")

See Also

  • ACC — Adaptive Cruise Control (uses ADAS input)
  • ADAS Ultrasonic — Ultrasonic parking sensors
  • TechCore — External API for ADAS control

Adaptive Cruise Control (ACC)

Adaptive Cruise Control implementation using radar sensor data. Maintains a set speed while automatically adjusting to maintain safe following distance behind other vehicles.

ADAS Ultrasonic

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

On this page

Public APIUsage ExampleSee Also