Replaced almost all placeholders with final art

Some animations still need to be added and replaced, but most of the sprites are final now.
This commit is contained in:
2025-10-07 13:04:14 +02:00
parent c46036dce6
commit dea470f93f
38 changed files with 3048 additions and 2126 deletions

View File

@@ -6,6 +6,7 @@ public class BirdEyesBehavior : MonoBehaviour
private StateMachine statemachine;
private Animator animator;
public bool correctItemIsIn;
[SerializeField] private Animator bushAnimator; // Assign in Inspector
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
@@ -36,6 +37,7 @@ public class BirdEyesBehavior : MonoBehaviour
}
public void BirdReveal()
{
statemachine.ChangeState ("BirdSpawned");
bushAnimator.SetTrigger("wolterisout");
statemachine.ChangeState ("BirdSpawned");
}
}