説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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