Files
beyond/Assets/Scripts/UI/UIButtonController.cs
2024-11-20 15:21:28 +01:00

28 lines
525 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Beyond
{
public class UIButtonController : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void OnTriggerEnter(Collider other)
{
Debug.Log("UIButtonController: "+other.name);
}
}
}