LookAtNode QML Type

자동으로 다른 노드를 가리키도록 유지되는 도우미 노드입니다. 더 보기...

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

Node

속성

상세 설명

이 헬퍼는 항상 지정된 노드를 가리키도록 자동으로 회전하는 노드를 구현합니다. 회전은 X축과 Y축에서만 발생합니다.

예를 들어, 다음 코드 조각은 원통이 큐브를 향하도록 유지합니다.

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 {} ]
    }
}

속성 문서

target : Node

살펴볼 대상 노드를 지정합니다. 기본값은 null 입니다.


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