21 lines
337 B
C#
21 lines
337 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class CorrectResponse : MonoBehaviour
|
|
{
|
|
|
|
public Image image;
|
|
|
|
public Animator animator;
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
animator.Play("StarMove", -1, 0f);
|
|
|
|
}
|
|
}
|