QComponent露
- PyQt5.Qt3DCore.QComponent
Inherits from QNode.
Inherited by QAbstractClipAnimator, QAbstractLight, QAbstractRayCaster, QArmature, QAxisAccumulator, QCameraLens, QComputeCommand, QEnvironmentLight, QFrameAction, QGeometryRenderer, QInputSettings, QKeyboardHandler, QLayer, QLevelOfDetail, QLogicalDevice, QMaterial, QMouseHandler, QObjectPicker, QRenderSettings, QRenderTarget, QSceneLoader, QShaderData, QTransform.
Description露
The base class of scene nodes that can be aggregated by QEntity instances as a component.
A QComponent provides a vertical slice of behavior that can be assigned to and sometimes shared across QEntity instances.
QComponent subclasses are often aggregated in groups that impart useful behavior to the aggregating entity. For example, to have an Entity that gets drawn by the Qt3D renderer aspect, an entity would most likely aggregate QTransform, QMesh, and QMaterial components.
See also
Methods露
- __init__(parent: QNode = None)
Constructs a new QComponent instance with parent as the parent.
Note: a QComponent should never be instanced directly, instance one of the subclasses instead.
- entities() → List[QEntity]
Returns a QVector containing all the entities that reference this component.
TODO
See also