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
Automatic GearboxCentrifugal ClutchCombustion EngineCombustion Engine ThermalsCompressorCVT GearboxDCT GearboxDifferentialElectric MotorElectric ServoElectric WinchPowertrain Components OverviewFriction ClutchGeneric Torque ProviderHydraulic AccumulatorHydraulic CylinderHydraulic PumpHydraulic WinchLinear ActuatorManual GearboxMulti-ShaftNitrous Oxide InjectionPowertrain Base DeviceRange BoxSequential GearboxShaftSplit ShaftSuperchargerTorque ConverterTorsion ReactorTurbochargerViscous Clutch

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 Referencevepowertrain

Supercharger

Engine-driven forced induction compressor that provides boost pressure proportional to engine RPM. Delivers linear, predictable power gains without turbo lag.

Engine-driven forced induction compressor that provides boost pressure proportional to engine RPM. Delivers linear, predictable power gains without turbo lag. Typically a sub-module of the Combustion Engine, driven via belt or gear.


Public API

VariableTypeDescription
isExistingbooleanWhether a supercharger is installed on this engine.

Hooks

HookDescription
initInitializes the supercharger from JBeam data and links to the parent engine.
updateGFXUpdates boost pressure calculations and UI feedback each frame.
updateFixedStepPhysics-rate update for pressure and torque calculations.

Usage Example

-- Access via the engine device
local engine = powertrain.getDevice("mainEngine")
if engine.supercharger and engine.supercharger.isExisting then
  log("I", "sc", "Supercharger installed")
end

See Also

  • Turbocharger — Exhaust-driven alternative
  • Nitrous Oxide Injection — Chemical boost
  • Combustion Engine — Parent engine device
  • Compressor — Generic compressor device

Split Shaft

Powertrain device that splits rotational power into two output paths. Used for driving two systems from a single input, such as front and rear axles from a transfer case.

Torque Converter

Fluid coupling device that transmits and multiplies torque between the engine and automatic transmission. Allows the engine to idle while the vehicle is stationary.

On this page

Public APIHooksUsage ExampleSee Also