using System.Collections; using System.Collections.Generic; using UnityEngine; namespace UnityEngine.UI { public class EmptyRaycast : MaskableGraphic { protected EmptyRaycast() { useLegacyMeshGeneration = false; } protected override void OnPopulateMesh(VertexHelper toFill) { toFill.Clear(); } } }