Files
RPGBook/Library/PackageCache/com.unity.2d.animation@494a3b4e73a9/Editor/SkinningModule/VisibilityTool/BoneVisibilityToolInterface.cs
SHOUTING_PIRATE f5928e04c4 intial commit
2025-07-21 17:10:16 +01: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();
}
}