Version: 2019.2
LanguageEnglish
  • C#

SkeletonBone

struct in UnityEngine

/

Implemented in:UnityEngine.AnimationModule

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Details of the Transform name mapped to the skeleton bone of a model and its default position and rotation in the T-pose.

The skeleton models used in Unity have multiple bones. The SkeletonBone struct has properties that are used to describe the position, rotation and scale of each bone. The bones are not shown. A MonoBehaviour.OnDrawGizmosSelected tool can be created to view the skeleton. An array of SkeletonBone positions can be used to make a line model using Gizmos.DrawLine.

An array of SkeletonBones are used in HumanDescription.skeleton.

Properties

nameThe name of the Transform mapped to the bone.
positionThe T-pose position of the bone in local space.
rotationThe T-pose rotation of the bone in local space.
scaleThe T-pose scaling of the bone in local space.