Node Class
A node, contained within a Program, and containing Instructions.
public sealed class Node : IMessage<Node>, IMessage, IEquatable<Node>, IDeepCloneable<Node>
Properties
| Name | Description |
|---|---|
| Instructions | The list of instructions in this node. |
| Labels | A jump table, mapping the names of labels to positions in the instructions list. |
| Name | The name of this node. |
| SourceTextStringID | the entry in the program’s string table that contains the original text of this node; null if this is not available |
| Tags | The tags associated with this node. |
Source
Defined in YarnSpinner/YarnSpinner.cs, line 219.