19 lines
386 B
C#
19 lines
386 B
C#
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();
|
|
}
|
|
}
|
|
}
|