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

Mini Graph

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

Overview

  • File: extensions/flowgraph/nodes/debug/miniGraph.lua
  • Name: Mini Graph
  • Category: repeat_instant
  • Description: A small graph window that plots a single numeric value over time. Supports viewport clamping and autoscale.

Pin Schema

Input Pins

NameTypeDescription
valuenumberValue to be logged into the graph.

Output Pins

None.

Behavior

  • init(): Initializes graph data buffer (100 samples), scale range (0–1), autoscale enabled, stop disabled.
  • work(): If not stopped, appends the current input value to the graph buffer. Auto-adjusts min/max scale if autoScale is true. Maintains a rolling window of 100 data points.

Node Display

  • Renders a 200×60 pixel line graph in the node body using im.PlotMultiLines.
  • Graph displays white line on the current data buffer.

Data Properties

PropertyDefaultDescription
scaleMin0Minimum Y-axis value (viewport clamp).
scaleMax1Maximum Y-axis value (viewport clamp).
autoScaletrueAutomatically adjusts viewport to fit data.
stopfalsePauses data collection when true.

Tags

#flowgraph #node #ge #debug #graph


Additional Exports

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

Log

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

Multi Flow

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

On this page

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