Sur cette page

LookAtNode QML Type

Un nœud d'aide qui pointe automatiquement vers un autre nœud. Plus d'informations...

Import Statement: import QtQuick3D.Helpers
Since: Qt 6.4
Inherits:

Node

Propriétés

Description détaillée

Cette aide met en œuvre un nœud qui pivote automatiquement de manière à toujours pointer vers un nœud spécifié. La rotation ne s'effectue que sur les axes X et Y.

Par exemple, dans l'extrait suivant, le cylindre est toujours orienté vers le cube.

View3D {
    anchors.fill: parent
    camera: camera

    PerspectiveCamera {
        id: camera
    }

    DirectionalLight {}

    LookAtNode {
        target: cube

        Model {
            id: cylinder
            source: "#Cone"
            eulerRotation.x: -90
            materials: [
                PrincipledMaterial {}
            ]
        }
    }

    Model {
        id: cube
        position: Qt.vector3d(300, 300, 0);
        source: "#Cube"
        materials: [ PrincipledMaterial {} ]
    }
}

Documentation de la propriété

target : Node

Spécifie le nœud cible à examiner. La valeur par défaut est null.

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