java.lang.Object
com.marginallyclever.nodegraphcore.Node
com.marginallyclever.nodegraphcore.nodes.LoadString
All Implemented Interfaces:
SupergraphInput

public class LoadString
extends Node
implements SupergraphInput
SupergraphInput for a String.
Since:
2022-02-01
  • Constructor Details

    • LoadString

      public LoadString()
      Constructor for subclasses to call.
    • LoadString

      public LoadString​(java.lang.String startingValue)
      Constructor that sets a starting value
      Parameters:
      startingValue - the starting value.
  • Method Details

    • create

      public Node create()
      Description copied from class: Node
      Return one new instance of this type of Node. Override this method in derived classes.
      Specified by:
      create in class Node
      Returns:
      One new instance of this type of Node.
    • update

      public void update()
      Description copied from class: Node
      Override this method to provide the custom behavior of this node. Runs regardless of dirty inputs or outputs.
      Specified by:
      update in class Node