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

30 lines
497 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class sun : 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 rise()
{
anim.SetBool("Sunrise",true);
}
public void set()
{
anim.SetBool("Sunrise",false);
}
}