arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.2d.animation@34e0443c58ed/Editor/SkinningModule/VisibilityTool/BoneVisibilityToolInterface.cs

12 lines
348 B
C#
Raw Normal View History

2025-09-25 22:01:28 +02:00
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();
}
}