unity_art_puzzle_playable_luna/APPlayableLuna/Assets/Scripts/EmptyImage.cs

12 lines
211 B
C#
Raw Normal View History

2023-12-21 08:33:05 +00:00
using UnityEngine.UI;
namespace GuruClient
{
public class EmptyImage : Image
{
protected override void OnPopulateMesh(VertexHelper toFill)
{
toFill.Clear();
}
}
}