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
Bool (Flowgraph Node)Color (Flowgraph Node)Generic Set/Get Variable (Flowgraph Node)Get Variable (Flowgraph Node)Number (Flowgraph Node)Quat (Flowgraph Node)Set Variable (Flowgraph Node)String (Flowgraph Node)Transform (Flowgraph Node)Vec3 (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 Extensionsflowgraphnodestypes

Bool (Flowgraph Node)

- **Node Name:** `Bool`

Overview

  • Node Name: Bool
  • Category: provider
  • File: extensions/flowgraph/nodes/types/bool.lua

Provides a constant boolean value.

Pin Schema

Output Pins

PinTypeDescription
valueboolThe boolean value

Data Properties

PropertyTypeDefaultDescription
valuebooltrueThe boolean to output

Behavior

  • init() - Sets data.value to true.
  • work() - Outputs data.value to the value pin.
  • drawMiddle() - Displays "true" or "false" in the node body.

How It Works

A simple constant provider. Toggle the value in the properties panel.

-- Outputs self.data.value each frame
-- Change in properties panel or via data binding

See Also

  • Color (Flowgraph Node) - Related reference
  • Generic Set/Get Variable (Flowgraph Node) - Related reference
  • Get Variable (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Race Started (Flowgraph Node)

- **Node Name:** `Race Started`

Color (Flowgraph Node)

- **Node Name:** `Color`

On this page

OverviewPin SchemaOutput PinsData PropertiesBehaviorHow It WorksSee Also