mirror of
https://github.com/Kizuren/SynthMaze.git
synced 2026-01-12 01:18:44 +01:00
17 lines
No EOL
395 B
C#
17 lines
No EOL
395 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;
|
|
}
|
|
}
|
|
} |