Basics

Guides

API Reference

Menu

Basics

Guides

API Reference

class: ParallelTransition

[11:7] extends: Transition

Represents a JavaFX ParallelTransition that runs multiple child animations simultaneously.

Methods

  • ParallelTransition ()

    Creates a new ParallelTransition with no child animations.

  • add (Items)

    Adds one or more child animations to this parallel transition.

    • @p Items is either a single transition object or a list of transition objects to add.
    • @r this object.
  • setNode (object NodeObj)

    Sets the default target Node applied to child animations that do not specify their own node.

    • @p NodeObj is a Node wrapper, or null to clear.
    • @r this object
  • getNode ()

    Returns the default target Node, or null when none is set.

    • @r An AussomJavaObject around the javafx.scene.Node, or null.
  • nodeProperty ()

    Returns the node property for binding or change listeners.

    • @r An AussomJavaObject around an ObjectProperty.
  • getChildren ()

    Returns the observable list of child Animation objects.

    • @r An AussomJavaObject around an ObservableList.