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

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

    • LoadNumber

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

      public LoadNumber​(java.lang.Number startingValue)
      Constructor for subclasses to call.
      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