Skip to content

Nodeui

NodeUI

Import

import "_IVLS/source/nodes/NodeUI.ksp"

Node: Ivls.NodeUI

Uses: Init, PostInit, Reload

Overview

NodeUI

LIBRARY MODULE

Manages the developer-facing node switcher UI for IVLS.

  • ivls.NodeUI switcher menu: populated from all registered nodes
  • Visibility toggled by dev-mode state and script override flags
  • IVLS.CONFIRM_UI macro for nodes to register their UI presence

API

Nodes

Name Description
node Ivls.NodeUI IVLS node that owns the NodeUI switcher menu and its supporting family variables.

Defines

Name Description
define IVLS.CONFIRM_UI(#node#) Registers the calling node as having a developer UI.

Nodes

node Ivls.NodeUI

Callbacks: Init, PostInit, Reload

IVLS node that owns the NodeUI switcher menu and its supporting family variables.


Defines

define IVLS.CONFIRM_UI(#node#)

Registers the calling node as having a developer UI.

Parameter Description
#node# name token of the node being confirmed

Example

// TODO: Add usage example

See Also