- Redone most UIs (WIP) - New world map - Game LOGO - main menus updated (WIP)
15 lines
300 B
C#
15 lines
300 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
public class LogoAnimationHandler : MonoBehaviour
|
|
{
|
|
public UnityEvent onAnimationEnded = new UnityEvent();
|
|
|
|
public void OnAnimationEnd()
|
|
{
|
|
onAnimationEnded.Invoke();
|
|
}
|
|
}
|