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

26 lines
422 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class bunny : 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 hop()
{
anim.Play("BunnyHop");
}
}