Created
August 19, 2024 21:36
-
-
Save koster/e845d9031db9134b941c88ccc5f48cbe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public class RaycastInverter : Mask | |
{ | |
public override bool IsRaycastLocationValid(Vector2 sp, Camera eventCamera) | |
{ | |
return !base.IsRaycastLocationValid(sp, eventCamera); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment