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.