arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.2d.animation@34e0443c58ed/Runtime/Bone.cs

18 lines
388 B
C#
Raw Normal View History

2025-09-25 22:01:28 +02:00
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;
}
}
}