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.