Нема описа
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.

1234567891011121314151617
  1. namespace UnityEngine.U2D.Animation
  2. {
  3. // Component to store id of a SpriteBone so that it can be bind back when needed
  4. [AddComponentMenu("")]
  5. internal class Bone : MonoBehaviour
  6. {
  7. [SerializeField]
  8. [HideInInspector]
  9. string m_Guid;
  10. public string guid
  11. {
  12. get => m_Guid;
  13. set => m_Guid = value;
  14. }
  15. }
  16. }