16 lines
253 B
C#
Executable file
16 lines
253 B
C#
Executable file
using UnityEngine;
|
|
|
|
public class TransitionStart : MonoBehaviour
|
|
{
|
|
public Animator Anim;
|
|
void Start()
|
|
{
|
|
Anim.SetTrigger("Start");
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|