Dumpintro implemented

This commit is contained in:
journaliciouz
2025-12-19 00:14:46 +01:00
parent 45f2cd3f29
commit 2ce3c0dfb6
41 changed files with 5497 additions and 27 deletions

View File

@@ -0,0 +1,19 @@
using UnityEngine;
public class AudioCollider : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
private void OnCollisionEnter2D(Collision2D collision)
{
}
private void OnTriggerEnter2D(Collider2D collision)
{
Debug.Log("He's here!");
}
}