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)
Create Button (Flowgraph Node)Get Button (Flowgraph Node)Get Multiple Buttons (Flowgraph Node)Set Button Property (Flowgraph Node)Set Multiple Buttons Property (Flowgraph Node)Simple Button (Flowgraph Node)Simple Multiple Buttons (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 Extensionsflowgraphnodesuibuttons

Set Multiple Buttons Property (Flowgraph Node)

- **Node Name:** `Set Multiple Buttons Property`

Overview

  • Node Name: Set Multiple Buttons Property
  • Category: repeat_instant
  • File: extensions/flowgraph/nodes/ui/buttons/setMultipleButtonsProperty.lua

Updates properties of multiple buttons in a single node. The number of button slots is configurable in the editor.

Pin Schema (per slot, numbered _1, _2, etc.)

Input Pins

PinTypeDefaultDescription
buttonId_Nnumber-ID of button N
label_Nstring"Button"Label for button N
active_Nbool-Active state for button N
order_Nnumber-Order for button N
style_Nstring"default"Style for button N

How It Works

  1. init() - Starts with count = 1.
  2. drawCustomProperties() - Integer input to set the number of button slots.
  3. updatePins(old, new) - Dynamically adds/removes 5-pin groups per slot.
  4. work() - For each slot, retrieves the button and sets any non-nil properties.

Serialization

  • Saves and restores count, rebuilding pins on deserialization.

Example Usage

-- Update labels and active states for 3 buttons at once
-- Set count=3, connect buttonId_1..3 and label_1..3

See Also

  • Create Button (Flowgraph Node) - Related reference
  • Get Button (Flowgraph Node) - Related reference
  • Get Multiple Buttons (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Set Button Property (Flowgraph Node)

- **Node Name:** `Set Button Property`

Simple Button (Flowgraph Node)

- **Node Name:** `Simple Button`

On this page

OverviewPin Schema (per slot, numbered _1, _2, etc.)Input PinsHow It WorksSerializationExample UsageSee Also