16 lines
234 B
C#
16 lines
234 B
C#
using UnityEngine;
|
|
|
|
namespace Scampz.GameJam
|
|
{
|
|
public class LevelChanger : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private Animator animator;
|
|
|
|
public void FadeAnimation()
|
|
{
|
|
animator.SetTrigger("Start");
|
|
}
|
|
}
|
|
}
|