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)

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 Extensionsflowgraphnodesui

On Bigmap Poi (Flowgraph Node)

- **Node Name:** `On Bigmap Poi`

Overview

  • Node Name: On Bigmap Poi
  • Category: repeat_instant
  • File: extensions/flowgraph/nodes/ui/onBigmapPoiSelected.lua

Detects when a POI (Point of Interest) is selected or navigated to on the bigmap. Provides impulse outputs for selection/deselection and navigation events.

Pin Schema

Output Pins

PinTypeImpulseDescription
selectedflowyesFires once when a POI is selected
deselectedflowyesFires once when a POI is deselected
poiIdstringnoID of the currently selected POI
navigatedflowyesFires once when a location is navigated to
denavigatedflowyesFires once when navigation is reset
posvec3noPosition that was navigated to

Internals

FieldPurpose
self.flagsTable of pending flag events to process next frame
self.navPosvec3 of the navigation target position
self.poiIdCurrently selected POI ID

How It Works

  1. work() - Called every frame:
    • Resets all impulse outputs to false.
    • Applies any pending flags from self.flags to the output pins.
    • Outputs the current poiId and navPos (as table via toTable()).
    • Clears the flags table.
  2. onPoiSelectedFromBigmap(poiId) - Hook callback:
    • If poiId is truthy, sets selected flag; otherwise sets deselected flag.
    • Stores the POI ID.
  3. onSetBigmapNavFocus(pos) - Hook callback:
    • If pos is truthy, sets navigated flag; otherwise sets denavigated flag.
    • Stores the position (defaults to vec3() if nil).

The node uses a flags-based pattern: hooks set flags, and the next work() call converts them to output pin values, ensuring impulse outputs fire for exactly one frame.

Lua Code Example

-- These are the hooks the node listens to:
-- Called when user selects a POI on the bigmap:
extensions.hook("onPoiSelectedFromBigmap", "poi_gasStation_01")

-- Called when user sets navigation target:
extensions.hook("onSetBigmapNavFocus", vec3(100, 200, 50))

-- Called when navigation is cleared:
extensions.hook("onSetBigmapNavFocus", nil)

Key Dependencies

  • onPoiSelectedFromBigmap hook - Fired by the bigmap UI on POI selection
  • onSetBigmapNavFocus hook - Fired by the bigmap UI on navigation target change

See Also

  • Medal / Auto Medal (Flowgraph Node) - Related reference
  • Clear Messages (Flowgraph Node) - Related reference
  • Context Translation (Flowgraph Node) - Related reference
  • FlowGraph Guide - Guide

Multi Description (Flowgraph Node)

- **Node Name:** `Multi Description`

On Bigmap State Change (Flowgraph Node)

- **Node Name:** `On Bigmap State Change`

On this page

OverviewPin SchemaOutput PinsInternalsHow It WorksLua Code ExampleKey DependenciesSee Also