Files
stas-barecky/Library/PackageCache/com.unity.2d.animation@3c53dae92956/Runtime/Bone.cs
2026-01-08 20:43:08 +05:00

18 lines
388 B
C#

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;
}
}
}