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

Pause Execution

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

Overview

  • File: extensions/flowgraph/nodes/debug/pauseManager.lua
  • Name: Pause Execution
  • Category: logic
  • Description: Pauses the execution of the flowgraph project when triggered.

Pin Schema

Input Pins

NameTypeDescription
flowflowPauses the execution when this has flow.

Output Pins

None.

Behavior

  • work(): Calls self.graph.mgr:setPaused(true) to pause the flowgraph manager.
  • This pauses the flowgraph project execution, not the game simulation.

Notes

  • Useful for debugging flowgraphs by pausing at specific points.
  • The project can be resumed from the flowgraph editor.

Tags

#flowgraph #node #ge #debug #pause


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

Number Slider

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

Restart Project

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

On this page

OverviewPin SchemaInput PinsOutput PinsBehaviorNotesTagsAdditional ExportsSee Also