XrSpatialAnchorListModel QML Type

空間アンカーを含むモデルを提供します。詳細...

Import Statement: import QtQuick3D.Xr
Since: Qt 6.8
Inherits:

ListModel

Status: Technical Preview

詳細な説明

この型は空間アンカーのリストを提供する。空間アンカーとは、仮想コンテンツに追跡および関連付けることができる物理世界の点である。

このリストには、XrSpatialAnchor 型のanchor プロパティを持つ要素が含まれます。

次のように使用できます:

Repeater3D {
    model: XrSpatialAnchorListModel {
    }
    delegate: Node {
        required property XrSpatialAnchor anchor
        position: anchor.position
        rotation: anchor.rotation
        // Further use of anchor properties...
    }
}

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