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)
ImGui DialogueImGui Simple Text BoxImGui Vehicle Selector

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 Extensionsflowgraphnodesuiimgui

ImGui Simple Text Box

- **Node Name:** `im Simple Text Box`

Overview

  • Node Name: im Simple Text Box
  • Category: repeat_instant
  • File: extensions/flowgraph/nodes/ui/imgui/imSimpleBox.lua

Displays a simple ImGui window with a title and text body. The window renders every frame while the node is active.

Pin Schema

Input Pins

PinTypeDefaultDescription
titlestring"Some Title"Displayed window title
textstring"Some Text"Displayed text content

Internals

FieldPurpose
C.tags{'imgui'}

How It Works

  1. work() - Called every frame while the node is active.
    • Opens an ImGui Begin window using the title pin value, appended with ##<nodeId> for uniqueness.
    • Renders the text pin value using im.Text().
    • Closes the window with im.End().

The window is non-closable from the user's perspective (uses BoolPtr(true) as the open flag).

Lua Code Example

-- Flowgraph usage: simply wire string values into the title/text pins
-- The node continuously renders the ImGui window each frame

-- Equivalent manual ImGui call:
im.Begin("My Title##123", im.BoolPtr(true))
im.Text("Hello World")
im.End()

Key Dependencies

  • ui_imgui - BeamNG's ImGui binding layer

See Also

  • im Dialogue (Flowgraph Node) - Related reference
  • im Vehicle Selector (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

ImGui Dialogue

- **Node Name:** `im Dialogue`

ImGui Vehicle Selector

- **Node Name:** `im Vehicle Selector`

On this page

OverviewPin SchemaInput PinsInternalsHow It WorksLua Code ExampleKey DependenciesSee Also