Completely remake mobile gameplayer buttons, and rever graphics renderer changes and just have linux on Vulkan instead

This commit is contained in:
2025-08-24 14:21:35 -07:00
parent d3c898231f
commit 458e60de2f
15 changed files with 2637 additions and 178 deletions

View File

@@ -0,0 +1,17 @@
using UnityEngine;
using UnityEngine.EventSystems;
public class HoldableButton : MonoBehaviour, IPointerDownHandler, IPointerUpHandler
{
public bool isPressed;
public void OnPointerDown(PointerEventData eventData)
{
isPressed = true;
}
public void OnPointerUp(PointerEventData eventData)
{
isPressed = false;
}
}