En esta página

Qt3DRender::QLayer Class

class Qt3DRender::QLayer

La clase QLayer proporciona una forma de filtrar las entidades que se mostrarán. Más...

Cabecera: #include <QLayer>
CMake: find_package(Qt6 REQUIRED COMPONENTS 3drender)
target_link_libraries(mytarget PRIVATE Qt6::3drender)
qmake: QT += 3drender
En QML: Layer
Hereda: Qt3DCore::QComponent
Status: Obsoleto

Propiedades

Funciones públicas

QLayer(Qt3DCore::QNode *parent = nullptr)
bool recursive() const
void setRecursive(bool recursive)

Señales

Descripción detallada

Qt3DRender::QLayer funciona en conjunción con el Qt3DRender::QLayerFilter en el FrameGraph.

Un QLayer puede ser aplicado a un subárbol de entidades estableciendo la propiedad recursive a true.

 #include <Qt3DCore/QEntity>
 #include <Qt3DRender/QGeometryRenderer>
 #include <Qt3DRender/QLayer>
 #include <Qt3DRender/QLayerFilter>
 #include <Qt3DRender/QViewport>

// Scene
Qt3DCore::QEntity *rootEntity = new Qt3DCore::Qt3DCore::QEntity;

Qt3DCore::QEntity *renderableEntity = new Qt3DCore::Qt3DCore::QEntity(rootEntity);
Qt3DRender::QGeometryRenderer *geometryRenderer = new Qt3DCore::QGeometryRenderer(renderableEntity);
Qt3DRender::QLayer *layer1 = new Qt3DCore::QLayer(renderableEntity);
layer1->setRecursive(true);
renderableEntity->addComponent(geometryRenderer);
renderableEntity->addComponent(layer1);

...

// FrameGraph
Qt3DRender::QViewport *viewport = new Qt3DRender::QViewport;
Qt3DRender::QLayerFilter *layerFilter = new Qt3DRender::QLayerFilter(viewport);
layerFilter->addLayer(layer1);

...

Véase también Qt3DRender::QLayerFilter.

Documentación de la propiedad

recursive : bool

Especifica si la capa se aplica también al subárbol de entidades.

Funciones de acceso:

bool recursive() const
void setRecursive(bool recursive)

Señal de notificador:

void recursiveChanged()

Documentación de la función miembro

[explicit] QLayer::QLayer(Qt3DCore::QNode *parent = nullptr)

Construye un nuevo QLayer con la dirección parent especificada.

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.