En esta página

Layer QML Type

La capa permite filtrar las entidades que se mostrarán. Más...

Import Statement: import Qt3D.Render 2.11
In C++: QLayer
Inherits:

Component3D

Status: Deprecated

Propiedades

Descripción detallada

Layer funciona en conjunción con LayerFilter en el FrameGraph.

Una Capa puede ser aplicada a un subárbol de entidades estableciendo la propiedad recursiva a true.

import Qt3D.Core 2.0
import Qt3D.Render 2.0

Entity {
    id: root

    components: RenderSettings {
        // FrameGraph
        Viewport {
            ClearBuffers {
                buffers: ClearBuffers.ColorDepthBuffer
                CameraSelector {
                    camera: mainCamera
                    LayerFilter {
                        layers: [layer1]
                    }
                }
            }
        }
    }

    // Scene
    Camera { id: mainCamera }

    Layer {
        id: layer1
        recursive: true
    }

    GeometryRenderer { id: mesh }

    Entity {
        id: renderableEntity
        components: [ mesh, layer1 ]
    }
}

Véase también LayerFilter.

Documentación de la propiedad

recursive : bool

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

© 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.