API ReferenceGE ExtensionsflowgraphnodesuiupdatedUI
Start Screen Crash Analysis Step Details (Flowgraph Node)
- **Node Name:** `Start Screen Crash Analysis Step Details`
Overview
- Node Name:
Start Screen Crash Analysis Step Details - Category:
repeat_instant - File:
extensions/flowgraph/nodes/ui/updatedUI/startScreenCrashAnalysisStepDetails.lua
Creates a crash analysis step details panel for the simple start screen, showing scoring data for individual crash analysis steps.
Pin Schema
Input Pins
| Pin | Type | Description |
|---|---|---|
flow | flow (chain) | Chain inflow |
stepScoreData | table | Step score data for the crash analysis |
Output Pins
| Pin | Type | Description |
|---|---|---|
flow | flow (chain) | Chain outflow |
Internals
Key Methods
| Method | Description |
|---|---|
work() | Passes flow through and adds crash analysis step details to the UI |
How It Works
- Passes
flowthrough (chain node pattern). - Calls
mgr.modules.ui:addCrashAnalysisStepDetails()with a table containing thestepScoreDatapin value.
Usage Example
-- Flowgraph chain:
-- [StartScreen Begin] → (build) → [Crash Analysis Step Details] → [Screen Finish]
-- ↑ stepScoreData (from crash analysis system)
-- The step score data contains details about each analysis step's scoring
mgr.modules.ui:addCrashAnalysisStepDetails({
stepScoreData = { ... } -- scoring breakdown per step
})Key Dependencies
mgr.modules.ui:addCrashAnalysisStepDetails()- renders the crash analysis panel
See Also
- EndScreen Begin (Flowgraph Node) - Related reference
- EndScreen Drift Stats (Flowgraph Node) - Related reference
- EndScreen Lap Times (Flowgraph Node) - Related reference
- FlowGraph Guide - Guide