gimm-sunrise-project/Assets/Scripts/background.cs

30 lines
507 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class background : MonoBehaviour
{
private Animator anim;
// Start is called before the first frame update
void Start()
{
anim = GetComponent<Animator>();
}
// Update is called once per frame
void Update()
{
}
public void brighten()
{
anim.SetBool("sunUp",true);
}
public void darken()
{
anim.SetBool("sunUp",false);
}
}