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
AI Debug DisplayCamera Mouse RaycastCommentDebug CylinderDebug LineDebug PrismDebug SphereDebug TextDisplay ValueDisplay FlowMulti GraphFlow ButtonLogMini GraphMulti FlowNumber SliderPause ExecutionRestart ProjectStop ProjectCategory Test (Test Dynamic)

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 Extensionsflowgraphnodesdebug

Stop Project

- **File:** `extensions/flowgraph/nodes/debug/stopManager.lua`

Overview

  • File: extensions/flowgraph/nodes/debug/stopManager.lua
  • Name: Stop Project
  • Category: logic
  • Description: Stops the execution of the flowgraph project when triggered.

Pin Schema

Input Pins

NameTypeDescription
flowflowStops the execution when this has flow.

Output Pins

None.

Behavior

  • work(): Calls self.graph.mgr:setRunning(false) to stop the flowgraph manager.
  • Completely halts the project - unlike Pause Execution, this ends execution entirely.

Notes

  • Use this to terminate a flowgraph when a condition is met (e.g., scenario complete).
  • To restart after stopping, the project must be explicitly started again.

Tags

#flowgraph #node #ge #debug #stop


Additional Exports

  • name - string - (see source)

  • description - string - (see source)

  • color - any - (see source)

  • icon - any - (see source)

  • category - string - (see source)

  • pinSchema - table - (see source)


See Also

  • AI Debug Display - Related reference
  • Camera Mouse Raycast - Related reference
  • Comment - Related reference
  • FlowGraph Guide - Guide

Restart Project

- **File:** `extensions/flowgraph/nodes/debug/restartManager.lua`

Category Test (Test Dynamic)

- **File:** `extensions/flowgraph/nodes/debug/testDynamic.lua`

On this page

OverviewPin SchemaInput PinsOutput PinsBehaviorNotesTagsAdditional ExportsSee Also