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

Display Value

- **Name:** `Display Value`

Overview

  • Name: Display Value
  • Type: simple
  • Category: repeat_instant
  • File: lua/ge/extensions/flowgraph/nodes/debug/display.lua
  • Pattern: Class-based (C = {}, returns _flowgraph_createNode(C))

Description

Displays a value inline within the flowgraph editor node. For table values, provides a "Dump" button that prints the table to the console.

Pin Schema

Input Pins

PinTypeDescription
valueanyThe value to display; tables can be dumped to console

Behavior

  • work() stores the input value as _lastVal for display.
  • drawMiddle() renders the value using dumpsz(val, 2) in the node body. If the value is a table, shows a "Dump" button that calls dump() to print it to the console.

Key APIs Used

  • dumpsz() - serialize value for display
  • dump() - print table to console

Tags

#flowgraph #node #ge #debug #display #util


Additional Exports

  • name - string - (see source)

  • type - string - (see source)

  • description - string - (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

Debug Text

- **Name:** `Debug Text`

Display Flow

- **Name:** `Display Flow`

On this page

OverviewDescriptionPin SchemaInput PinsBehaviorKey APIs UsedTagsAdditional ExportsSee Also