BlendTreeNode QML Type
Base class for all blend tree nodes. More...
Import Statement: | import QtQuick.Timeline.BlendTrees |
Since: | Qt 6.7 |
Properties
- outputEnabled : bool
Detailed Description
BlendTreeNode is the base class for all blend tree nodes. It is not intended to be used directly, but rather to be subclassed to create custom blend tree nodes.
Property Documentation
outputEnabled : bool |
This property determines whether the blend tree node should commit the property changes. The default value is /c false.
Any node can be an output node which commits the property changes, but it should usually be the last node in the blend tree. If multiple nodes are outputting data and there is a conflict, then the last property change will be used. So ideally if there are multiple output nodes in a tree, the targets and properties effected should be disjoint.