API ReferenceGE Extensionsflowgraphnodesdebug
Display Value
- **Name:** `Display Value`
Overview
- Name:
Display Value - Type:
simple - Category:
repeat_instant - File:
lua/ge/extensions/flowgraph/nodes/debug/display.lua - Pattern: Class-based (
C = {}, returns_flowgraph_createNode(C))
Description
Displays a value inline within the flowgraph editor node. For table values, provides a "Dump" button that prints the table to the console.
Pin Schema
Input Pins
| Pin | Type | Description |
|---|---|---|
value | any | The value to display; tables can be dumped to console |
Behavior
work()stores the input value as_lastValfor display.drawMiddle()renders the value usingdumpsz(val, 2)in the node body. If the value is a table, shows a "Dump" button that callsdump()to print it to the console.
Key APIs Used
dumpsz()- serialize value for displaydump()- print table to console
Tags
#flowgraph #node #ge #debug #display #util
Additional Exports
-
name-string- (see source) -
type-string- (see source) -
description-string- (see source) -
category-string- (see source) -
pinSchema-table- (see source) -
tags-table- (see source)
See Also
- AI Debug Display - Related reference
- Camera Mouse Raycast - Related reference
- Comment - Related reference
- FlowGraph Guide - Guide