12 lines
210 B
C#
12 lines
210 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public class StartSceneTransition : MonoBehaviour
|
||
|
{
|
||
|
Animator animator;
|
||
|
void Start()
|
||
|
{
|
||
|
animator = GetComponent<Animator>();
|
||
|
animator.SetTrigger("start1");
|
||
|
}
|
||
|
}
|