Made Changes To slotted items (not fully functional but progressing)

Added Unity events to the Slotting Items, the eyes react fine but sometimes they fuck up. gonna check that out later.
This commit is contained in:
2025-09-11 17:03:56 +02:00
parent 15b8146815
commit 9b590ca6ec
15 changed files with 455 additions and 409 deletions

View File

@@ -15,19 +15,23 @@ public class BirdEyesBehavior : MonoBehaviour
// Update is called once per frame
void Update()
{
}
void CorrectItem()
public void CorrectItem()
{
animator.SetTrigger("RightGuess");
}
void IncorrectItem()
public void IncorrectItem()
{
animator.SetTrigger("WrongGuess");
animator.SetTrigger("WrongGuess");
}
void BirdReveal()
public void NoItem()
{
animator.SetTrigger("NoGuess");
}
public void BirdReveal()
{
statemachine.ChangeState ("BirdSpawned");
}