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
AI Debug DisplayCamera Mouse RaycastCommentDebug CylinderDebug LineDebug PrismDebug SphereDebug TextDisplay ValueDisplay FlowMulti GraphFlow ButtonLogMini GraphMulti FlowNumber SliderPause ExecutionRestart ProjectStop ProjectCategory Test (Test Dynamic)

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 Extensionsflowgraphnodesdebug

Number Slider

- **File:** `extensions/flowgraph/nodes/debug/numberSlider.lua`

Overview

  • File: extensions/flowgraph/nodes/debug/numberSlider.lua
  • Name: Number Slider
  • Category: provider
  • Description: Provides up to five interactive number sliders with configurable ranges. Values are output as numbers.

Pin Schema

Input Pins

None.

Output Pins

NameTypeDescription
anumberNumber a. Visible by default.
bnumberNumber b. Hidden by default.
cnumberNumber c. Hidden by default.
dnumberNumber d. Hidden by default.
enumberNumber e. Hidden by default.

Behavior

  • init(): Sets up five float sliders with default ranges: a(-1 to 1), b(0 to 1), c(0 to 10), d(0 to 100), e(0 to 1000).
  • work(): Outputs each slider's current value to its corresponding output pin.
  • Serialization: Slider values are saved/restored with the project.

Node Display

  • Renders visible sliders directly in the node body (120px wide).
  • Only shows sliders for unhidden output pins.
  • Custom properties panel also provides all five sliders.

Data Properties

PropertyDefaultDescription
aMin/aMax-1 / 1Range for slider a.
bMin/bMax0 / 1Range for slider b.
cMin/cMax0 / 10Range for slider c.
dMin/dMax0 / 100Range for slider d.
eMin/eMax0 / 1000Range for slider e.

Tags

#flowgraph #node #ge #debug #slider


Additional Exports

drawCustomProperties()

  • Returns: any

drawMiddle(builder, style)

  • builder - any

  • style - any

  • name - string - (see source)

  • description - string - (see source)

  • color - any - (see source)

  • icon - any - (see source)

  • category - string - (see source)

  • pinSchema - table - (see source)

  • tags - table - (see source)


See Also

  • AI Debug Display - Related reference
  • Camera Mouse Raycast - Related reference
  • Comment - Related reference
  • FlowGraph Guide - Guide

Multi Flow

- **File:** `extensions/flowgraph/nodes/debug/multiFlow.lua`

Pause Execution

- **File:** `extensions/flowgraph/nodes/debug/pauseManager.lua`

On this page

OverviewPin SchemaInput PinsOutput PinsBehaviorNode DisplayData PropertiesTagsAdditional ExportsdrawCustomProperties()drawMiddle(builder, style)See Also