Skeleton QML Type

스켈레탈 애니메이션 계층구조를 정의합니다. 더 보기...

Import Statement: import QtQuick3D
Inherits:

Node

상세 설명

스켈레톤은 스켈레탈 애니메이션을 사용하여 모델에 애니메이션을 적용하는 방법을 정의합니다. 여기에는 Joint 노드의 계층 구조가 포함됩니다. 각 조인트는 스키닝 애니메이션을 위해 변형될 수 있습니다.

Skeleton {
    id: qmlskeleton
    Joint {
        id: joint0
        index: 0
        skeletonRoot: qmlskeleton
        Joint {
            id: joint1
            index: 1
            skeletonRoot: qmlskeleton
        }
    }
}

Joint::skeletonRoot, Model::skeleton, Qt Quick 3D - 간단한 스키닝 예제#skeleton-and-joint-hierarchy도참조하세요 .

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