MyBook/Library/PackageCache/com.unity.2d.animation@7.1.1/Editor/SkinningModule/VisibilityTool/BoneVisibilityToolInterface.cs
2025-03-22 15:17:36 +08:00

12 lines
348 B
C#

namespace UnityEditor.U2D.Animation
{
internal interface IBoneVisibilityToolView
{
void OnBoneSelectionChange(SkeletonSelection skeleton);
void OnBoneExpandedChange(BoneCache[] bones);
void OnBoneNameChanged(BoneCache bone);
void OnSelectionChange(SkeletonCache skeleton);
void Deactivate();
}
}