Files
Anonymous Raccoon bcfac0a90b Reuploading project
2018-03-04 01:11:29 +01:00

17 lines
300 B
C#

using System.Collections;
using UnityEngine;
public class JoiningLobby : MonoBehaviour {
private void OnEnable()
{
StartCoroutine(Enable());
}
private IEnumerator Enable()
{
yield return new WaitForSeconds(1.5f);
gameObject.SetActive(false);
}
}