内容表

上一话题

QSGNode

下一话题

QSGSimpleRectNode

QSGOpacityNode

QSGOpacityNode class is used to change opacity of nodes. 更多

Inheritance diagram of PySide2.QtQuick.QSGOpacityNode

概要

函数

详细描述

Opacity applies to its subtree and can be nested. Multiple opacity nodes will be accumulated by multiplying their opacity. The accumulation happens as part of the rendering.

When nested opacity gets below a certain threshold, the subtree might be marked as blocked, causing isSubtreeBlocked() to return true. This is done for performance reasons.

注意

All classes with QSG prefix should be used solely on the scene graph’s rendering thread. See 场景图形和渲染 了解更多信息。

class QSGOpacityNode

Constructs an opacity node with a default opacity of 1.

Opacity accumulates downwards in the scene graph so a node with two QSGOpacityNode instances above it, both with opacity of 0.5, will have effective opacity of 0.25.

节点的默认不透明度为 1。

PySide2.QtQuick.QSGOpacityNode. combinedOpacity ( )
返回类型

qreal

PySide2.QtQuick.QSGOpacityNode. opacity ( )
返回类型

qreal

Returns this opacity node’s opacity.

另请参阅

setOpacity()

PySide2.QtQuick.QSGOpacityNode. setCombinedOpacity ( opacity )
参数

opacity qreal

Sets the combined opacity of this node to opacity .

This function is meant to be called by the node preprocessing prior to rendering the tree, so it will not mark the tree as dirty.

PySide2.QtQuick.QSGOpacityNode. setOpacity ( opacity )
参数

opacity qreal

Sets the opacity of this node to opacity .

Before rendering the graph, the renderer will do an update pass over the subtree to propagate the opacity to its children.

The value will be bounded to the range 0 to 1.

另请参阅

opacity()