RLS Studios
ProjectsPatreonCommunityDocsAbout
Join Patreon
BeamNG Modding Docs

Guides

Reference

Server CommandsGE UtilitiesGame Engine MainNavigation GraphScreenshot CaptureServerServer ConnectionSpawnpoint ManagerSimulation TimeVehicle SpawningSuspension Frequency Tester
Flowgraph Base ModuleFlowgraph Base NodeFlowgraph Base State NodeFlowgraph Node BuilderFlowgraph GraphFlowgraph Group HelperFlowgraph LinkFlowgraph ManagerNew Node TemplateFlowgraph PinFlowgraph States ManagerFlowgraph UtilsFlowgraph Variable Storage
Audio Channel Fade (Flowgraph Node)Audio Fade In (Flowgraph Node)Audio Fade Out (Flowgraph Node)Play Sound (Flowgraph Node)

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 ReferenceGE Extensionsflowgraphnodesaudio

Audio Fade Out (Flowgraph Node)

- **Node Name:** `Audio Fade Out`

Overview

  • Node Name: Audio Fade Out
  • Icon: audiotrack
  • Category: once_f_duration
  • Tags: sound, audio, volume
  • File: extensions/flowgraph/nodes/audio/fadeOut.lua

Fades the global audio volume down to silence.

Pin Schema

Input Pins

PinTypeDefaultDescription
durationnumber1Duration of fade in seconds

Output Pins

Standard once_f_duration pins (flow, started, finished).

Behavior

  • workOnce() - Sets SFX global parameter g_FadeTimeMS to duration * 1000 and g_GameLoading to 1 (loading = audio fades out). Sets duration state to started.
  • work() - Tracks elapsed time via self.timer using self.mgr.dtReal. Sets duration state to finished when timer exceeds duration.
  • reset() - Resets timer, duration state, and SFX parameters to defaults.

Notes

  • Mirror of fadeIn.lua - only difference is g_GameLoading = 1 instead of 0.
  • Uses SFXSystem.setGlobalParameter() for engine-level global volume control.

See Also

  • Audio Channel Fade (Flowgraph Node) - Related reference
  • Audio Fade In (Flowgraph Node) - Related reference
  • Play Sound (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Audio Fade In (Flowgraph Node)

- **Node Name:** `Audio Fade In`

Play Sound (Flowgraph Node)

- **Node Name:** `Play Sound`

On this page

OverviewPin SchemaInput PinsOutput PinsBehaviorNotesSee Also