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

Nitrous Oxide Injection

Chemical boost system that injects nitrous oxide (N₂O) into the engine intake for temporary power increases. Models tank capacity, arming, and injection state.

Chemical boost system that injects nitrous oxide (N₂O) into the engine intake for temporary, significant power increases. Models tank capacity, arming logic, and injection state. Typically a sub-module of the Combustion Engine.


Public API

VariableTypeDescription
isExistingbooleanWhether a nitrous system is installed on this engine.
isArmedbooleanWhether the system is armed (ready to inject when triggered).
isActivebooleanWhether nitrous is currently being injected.

Hooks

HookDescription
initInitializes the N₂O system from JBeam data and links to the parent engine device.
updateGFXUpdates injection state, tank level, and UI feedback each frame.

Usage Example

-- Access via the engine device
local engine = powertrain.getDevice("mainEngine")
if engine.nitrousOxide and engine.nitrousOxide.isExisting then
  -- Arm the system
  engine.nitrousOxide.isArmed = true
end

See Also

  • Combustion Engine — Parent engine device
  • Supercharger — Mechanical forced induction
  • Turbocharger — Exhaust-driven forced induction
  • Booster — External force boost

Multi-Shaft

Powertrain device that connects multiple rotational shafts together. Distributes torque across several outputs, used for complex drivetrain layouts like multi-axle trucks.

Powertrain Base Device

Base class inherited by all powertrain components. Provides common methods for locking, disabling, and querying device state. Every powertrain device shares these properties.

On this page

Public APIHooksUsage ExampleSee Also