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

Restart Project

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

Overview

  • File: extensions/flowgraph/nodes/debug/restartManager.lua
  • Name: Restart Project
  • Category: logic
  • Description: Restarts the flowgraph project when triggered.

Pin Schema

Input Pins

NameTypeDescription
flowflowRestarts the project when this has flow.

Output Pins

None.

Behavior

  • work(): Calls self.graph.mgr:queueForRestart() to schedule a project restart.
  • Has duration behaviour flag set, indicating it affects project lifetime.

Notes

  • The restart is queued, not immediate - it happens after the current frame completes.
  • Useful for creating looping flowgraph scenarios or reset-on-condition logic.

Tags

#flowgraph #node #ge #debug #restart


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

Pause Execution

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

Stop Project

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

On this page

OverviewPin SchemaInput PinsOutput PinsBehaviorNotesTagsAdditional ExportsSee Also