QSubtreeEnabler#
Enables or disables entire subtrees of framegraph nodes. More…
Synopsis#
Properties#
Functions#
def
enablement
()def
requestUpdate
()def
setEnablement
(enablement)
Signals#
def
enablementChanged
(enablement)
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
While QFrameGraphNodes can be individually enabled and disabled via the enabled
property, this can become tedious when an entire path needs to be turned on or off. QSubtreeEnabler
is a convenience node that makes this use case trivial, allowing all of its children to be controlled by a single switch.
QSubtreeEnabler
is enabled by default.
- class PySide6.Qt3DRender.Qt3DRender.QSubtreeEnabler([parent=None])#
- Parameters:
parent –
PySide6.Qt3DCore.Qt3DCore.QNode
Note
Properties can be used directly when from __feature__ import true_property
is used or via accessor functions otherwise.
- property PᅟySide6.Qt3DRender.Qt3DRender.QSubtreeEnabler.enablement: Enablement#
Controls whether subtree enablement is persistent or transient.
- Access functions:
enablement
()setEnablement
(enablement)Signal
enablementChanged
(enablement)
- PySide6.Qt3DRender.Qt3DRender.QSubtreeEnabler.Enablement#
Specifies whether subtree enablement is persistent or transient.
Constant
Description
Qt3DRender.QSubtreeEnabler.Persistent
The value of enabled is persistent. This is the default.
Qt3DRender.QSubtreeEnabler.SingleShot
The value of enabled will last for a single frame and then be reset to false. This might be used for a subtree drawing to an FBO, for example, to only update the FBO when the relevant portions of the scene changed.
- PySide6.Qt3DRender.Qt3DRender.QSubtreeEnabler.enablement()#
- Return type:
See also
Getter of property enablement
.
- PySide6.Qt3DRender.Qt3DRender.QSubtreeEnabler.enablementChanged(enablement)#
- Parameters:
enablement –
Enablement
Notification signal of property enablement
.
- PySide6.Qt3DRender.Qt3DRender.QSubtreeEnabler.requestUpdate()#
Requests that the subtree be enabled.
A convenience method intended to be used with SingleShot
enablement.
- PySide6.Qt3DRender.Qt3DRender.QSubtreeEnabler.setEnablement(enablement)#
- Parameters:
enablement –
Enablement
See also
Setter of property enablement
.