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)
EndScreen Begin (Flowgraph Node)EndScreen Drift Stats (Flowgraph Node)EndScreen Lap Times (Flowgraph Node)EndScreen Results (Flowgraph Node)EndScreen Drag Time Slip (Flowgraph Node)EndScreen Whole (Flowgraph Node)StartScreen Begin (Flowgraph Node)Start Screen Crash Analysis Step Details (Flowgraph Node)StartScreen Drag Dial (Flowgraph Node)Screen Finish (Flowgraph Node)StartScreen Intro (Flowgraph Node)Screen Main Header (Flowgraph Node)StartScreen Text Panel (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 ExtensionsflowgraphnodesuiupdatedUI

StartScreen Intro (Flowgraph Node)

- **Node Name:** `StartScreen Intro`

Overview

  • Node Name: StartScreen Intro
  • Category: repeat_instant
  • File: extensions/flowgraph/nodes/ui/updatedUI/startScreenIntro.lua

Combo node that adds an intro text panel with optional automatic objectives and ratings sections to the start screen.

Pin Schema

Input Pins

PinTypeDefaultDescription
flowflow (chain)-Chain inflow
textstring/table"Text"Contents of the intro panel
includeObjectivesbool-Auto-add objectives after the panel
includeRatingsbool-Auto-add ratings after the panel

Output Pins

PinTypeDescription
flowflow (chain)Chain outflow

Internals

Key Methods

MethodDescription
work()Adds intro text panel, then optionally objectives and ratings

How It Works

  1. Passes flow through.
  2. If text is non-empty, adds a textPanel UI element with header "Intro" on the main page.
  3. If includeObjectives is true, calls mgr.modules.ui:addObjectives() (no change data - shows target objectives).
  4. If includeRatings is true, calls mgr.modules.ui:addRatings().

Usage Example

-- Flowgraph chain:
-- [StartScreen Begin] → (build) → [StartScreen Intro] → [Screen Finish]
--                                        ↑ text = "Welcome to the race!"
--                                        ↑ includeObjectives = true

-- Equivalent UI element:
mgr.modules.ui:addUIElement({
  type = 'textPanel',
  header = "Intro",
  text = "Welcome to the race!",
  pages = { main = true },
})
mgr.modules.ui:addObjectives()
mgr.modules.ui:addRatings()

Key Dependencies

  • mgr.modules.ui:addUIElement() - adds text panel
  • mgr.modules.ui:addObjectives() - renders objectives list
  • mgr.modules.ui:addRatings() - renders rating display

See Also

  • EndScreen Begin (Flowgraph Node) - Related reference
  • EndScreen Drift Stats (Flowgraph Node) - Related reference
  • EndScreen Lap Times (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Screen Finish (Flowgraph Node)

- **Node Name:** `Screen Finish`

Screen Main Header (Flowgraph Node)

- **Node Name:** `Screen Main Header`

On this page

OverviewPin SchemaInput PinsOutput PinsInternalsKey MethodsHow It WorksUsage ExampleKey DependenciesSee Also