You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
395 B

namespace UnityEngine.U2D.Animation
{
// Component to store id of a SpriteBone so that it can be bind back when needed
[AddComponentMenu("")]
internal class Bone : MonoBehaviour
{
[SerializeField]
[HideInInspector]
string m_Guid;
public string guid
{
get => m_Guid;
set => m_Guid = value;
}
}
}