arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.2d.animation@34e0443c58ed/Editor/SkinningModule/MeshPreviewTool/IMeshPreviewBehaviour.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

14 lines
327 B
C#

using System;
using UnityEngine;
namespace UnityEditor.U2D.Animation
{
internal interface IMeshPreviewBehaviour
{
float GetWeightMapOpacity(SpriteCache sprite);
bool DrawWireframe(SpriteCache sprite);
bool Overlay(SpriteCache sprite);
bool OverlayWireframe(SpriteCache sprite);
}
}