No Description
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.

BoneVisibilityToolInterface.cs 348B

1234567891011
  1. namespace UnityEditor.U2D.Animation
  2. {
  3. internal interface IBoneVisibilityToolView
  4. {
  5. void OnBoneSelectionChange(SkeletonSelection skeleton);
  6. void OnBoneExpandedChange(BoneCache[] bones);
  7. void OnBoneNameChanged(BoneCache bone);
  8. void OnSelectionChange(SkeletonCache skeleton);
  9. void Deactivate();
  10. }
  11. }