This commit is contained in:
Gerard Gascón 2025-04-24 17:33:35 +02:00
commit 27755409e3
195 changed files with 146336 additions and 0 deletions

View file

@ -0,0 +1,17 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ButtonController : MonoBehaviour{
[SerializeField] ParticleSystem winParticles;
bool won;
void OnTriggerEnter(Collider other){
if (other.CompareTag("Piece") && !won){
winParticles.Play();
won = true;
GameManager.instance.ButtonPressed();
}
}
}