Skeleton QML Type

Contain model's skeleton information. More...

Import Statement: import QtQuick3D 1.0
Inherits:

Node

Detailed Description

It's a simple container type including Joint hierarchy. Only the id attribute and internal Joint are meaningful. Each joint can be transformed for a skinning animation.

 Skeleton {
     id: qmlskeleton
     Joint {
         id: joint_0
         index: 0
         skeletonRoot: qmlskelgon
         Joint {
             id: joint_1
             index: 1
             skeletonRoot: qmlskelgon
         }
     }
 }

See also Joint::skeletonRoot, Model::skeleton, and Qt Quick 3D - Simple Skinning Example#skeleton-and-joint-hierarchy.