Nodes

Nodes are function blocks in visual programming that can be connected to other nodes to create a script in Halo Infinite.

Nodes are the building blocks of visual programming. Acting similar to the shapes that one would connect with arrows to create a flow chart, each node performs a specific task and then either passes along data or triggers the next node in the circuit via its output. Nodes all have some combination of input and output pins that can be connected to each other, if the two that are being connected are both compatible and not being prevented from connecting because of some exclusionary rule.

Node types

Node types are a way to organize nodes based on what they do. While there are nodes of various categories within Halo Infinite, Node Types, specifically designates nodes based on their characteristics.

Event Nodes (Event Listeners)

  • Triggered by a game event, or custom event.

  • Can temporarily store and provide data via its output connection pins.

  • May accept data inputs which arm or configure the event.

  • Notably missing a input (left-side) execution (diamond) pin.

Execution Nodes

  • Triggered by an execution connection via it's input execution pin.

  • May also temporarily store and provide date via its output connection pins, as well as require or receive optional input data to successfully execute.

  • All Execution Nodes will have an input execution pin on the left that must be connected to either an Event Node, or a string of Execution Nodes that begins with an Event Node, or the graph will fail to build.

Data Nodes

  • Has no execution pins.

  • Performs an operation when an execution node it is related to is triggered. Data nodes send information forward and can be combined to create complex operations to prepare data for an execution node.

  • May feed into one or many execution nodes within the same event.

  • Some Data Nodes have their output restricted to only working within a single chain of execution/circuit.

Learn more about node categories


Contributors

Captain Punch AgentZero Okom

Last updated