QEntity

PyQt5.Qt3DCore.QEntity

Inherits from QNode.

Inherited by QAbstractCameraController, QCamera, QSkyboxEntity, QText2DEntity.

Description

QEntity is a QNode subclass that can aggregate several QComponent instances that will specify its behavior.

By itself a QEntity is an empty shell. The behavior of a QEntity object is defined by the QComponent objects it references. Each Qt3D backend aspect will be able to interpret and process an Entity by recognizing which components it is made up of. One aspect may decide to only process entities composed of a single QTransform component whilst another may focus on QMouseHandler.

See also

QComponent, QTransform.

Methods

__init__(parent: QNode = None)

Constructs a new QEntity instance with parent as parent.


addComponent(QComponent)

Adds a new reference to the component comp.

Note: If the QComponent has no parent, the QEntity will set itself as its parent thereby taking ownership of the component.


components() → List[QComponent]

Returns the list of QComponent instances the entity is referencing.


parentEntity() → QEntity

Returns the parent QEntity instance of this entity. If the immediate parent isn鈥檛 a QEntity, this function traverses up the scene hierarchy until a parent QEntity is found. If no QEntity parent can be found, returns null.


removeComponent(QComponent)

Removes the reference to comp.