QSortPolicy¶

PyQt5.Qt3DRender.QSortPolicy

Inherits from QFrameGraphNode.

Description¶

Provides storage for the sort types to be used.

A QSortPolicy class stores the sorting type used by the FrameGraph. The sort types determine how drawable entities are sorted before drawing to determine the drawing order. When QSortPolicy is present in the FrameGraph, the sorting mechanism is determined by the SortTypes list. Multiple sort types can be used simultaneously. If QSortPolicy is not present in the FrameGraph, entities are drawn in the order they appear in the entity hierarchy.

Enums¶

SortType

This enum type describes the available sort types.

Member

Value

Description

BackToFront

(1 << 1)

sort the objects from back to front based on inverted z order. More accurately, the sorting key is the z component of the projection of the camera-to-object-center vector onto the camera’s view vector.

FrontToBack

(1 << 3)

sort the objects from front to back. The opposite of .

Material

(1 << 2)

sort the objects based on their material value

StateChangeCost

(1 << 0)

sort the objects so as to minimize the cost of changing from the currently rendered state

Texture

TODO

TODO

Methods¶

__init__(parent: QNode = None)

Constructs QSortPolicy with given parent.


setSortTypes(Iterable[QSortPolicy.SortType])

See also

sortTypes().


setSortTypes(Iterable[int])

TODO


sortTypes() → List[QSortPolicy.SortType]

Returns the current sort types in use

See also

setSortTypes().


sortTypesInt() → List[int]

TODO

Signals¶

sortTypesChanged(Iterable[QSortPolicy.SortType])

TODO


sortTypesChanged(Iterable[int])

TODO