Add scene transitions

This commit is contained in:
2022-08-16 23:33:49 -07:00
parent 574ba4251e
commit 609ffc5991
19 changed files with 951 additions and 596 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
namespace Scampz.GameJam
{
public class LevelChanger : MonoBehaviour
{
[SerializeField]
private Animator animator;
public void FadeAnimation()
{
//animator.SetTrigger("FadeOut");
}
}
}