TG9six 2483774491 First Push
First Push
2025-08-09 17:43:37 +04:00

24 lines
528 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Polyart
{
public class TestInteractable : Interactable_Dreamscape
{
public override void OnFocus()
{
print("Looking at " + gameObject.name);
}
public override void OnInteract()
{
print("Interacted with " + gameObject.name);
}
public override void OnLoseFocus()
{
print("Stopped Looking at " + gameObject.name);
}
}
}