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
Medal / Auto Medal (Flowgraph Node)Clear Messages (Flowgraph Node)Context Translation (Flowgraph Node)ConvertUnit (Flowgraph Node)Set UI Timer / Corner Timer (Flowgraph Node)Custom Button TEST (Flowgraph Node)Custom UI Layout (Flowgraph Node)End Screen (Flowgraph Node)End Stats (Flowgraph Node)Fade From Black (Flowgraph Node)Fade Sequence (Flowgraph Node)Fade To Black (Flowgraph Node)Flash Message (Flowgraph Node)Generic Mission Text (Flowgraph Node)Get Gamestate (Flowgraph Node)Show Editor (Flowgraph Node)Hide Game UI (Flowgraph Node)Message (Flowgraph Node)Mission End Screen (Flowgraph Node)Popup (Flowgraph Node)Monologue (Flowgraph Node)Multi Description (Flowgraph Node)On Bigmap Poi (Flowgraph Node)On Bigmap State Change (Flowgraph Node)Set UI Race Checkpoints (Flowgraph Node)Set UI Race Laps (Flowgraph Node)Set UI Race Recovery (Flowgraph Node)RT Message (Flowgraph Node)Select Buttons (Flowgraph Node)Set UI Layout (Flowgraph Node)Show Apps (Flowgraph Node)Show Monitor (Flowgraph Node)Start Screen (Flowgraph Node)Clear Goals (Flowgraph Node)Tasklist Message (Flowgraph Node)Tasklist Task (Flowgraph Node)Three Element Select (Flowgraph Node)Vehicle Selector (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 Extensionsflowgraphnodesui

Multi Description (Flowgraph Node)

- **Node Name:** `Multi Description`

Overview

  • Node Name: Multi Description
  • Category: repeat_instant
  • File: extensions/flowgraph/nodes/ui/multiDescription.lua

Merges multiple input values into a table array, producing a multiTranslationObject for use with the Start Screen node or other UI elements that accept multi-part descriptions.

Pin Schema

Input Pins (Dynamic)

PinTypeDescription
value_1anyFirst value
(value_2 … value_N)anyAdditional values (added via count)

Output Pins

PinTypeDescription
valuetable (multiTranslationObject)Array of all input values

Internals

FieldPurpose
self.countNumber of input value slots

How It Works

  1. postInit() - Initializes pins from 0 to count via updatePins().
  2. work() - Called every frame:
    • Creates a new empty table for pinOut.value.
    • Iterates from 1 to count, inserting each value_<i> pin's value into the output array.
  3. drawCustomProperties() - Editor UI with an integer input to adjust the value count.
  4. updatePins(old, new) - Dynamically adds or removes value_<i> input pins.
  5. drawMiddle() - Shows a preview of data.pattern text in the node body (truncated to 10 chars).

Serialization

  • _onSerialize() - Saves count.
  • _onDeserialized() - Restores count and rebuilds pins.

Lua Code Example

-- This node is essentially:
local result = {}
for i = 1, count do
  table.insert(result, pinIn['value_' .. i].value)
end
-- result is then passed as multiTranslationObject to startScreen's text pin

-- Usage with Start Screen node:
-- Wire multiDescription output -> startScreen text input
-- The start screen renders each entry as a separate description block

Key Dependencies

  • Used primarily with the Start Screen node's text pin (type multiTranslationObject)
  • ui_flowgraph_editor - Node color/icon constants

See Also

  • Medal / Auto Medal (Flowgraph Node) - Related reference
  • Clear Messages (Flowgraph Node) - Related reference
  • Context Translation (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Monologue (Flowgraph Node)

- **Node Name:** `Monologue`

On Bigmap Poi (Flowgraph Node)

- **Node Name:** `On Bigmap Poi`

On this page

OverviewPin SchemaInput Pins (Dynamic)Output PinsInternalsHow It WorksSerializationLua Code ExampleKey DependenciesSee Also