No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
-
- public class Init : MonoBehaviour
- {
- // Start is called before the first frame update
- void Start()
- {
-
- if (GameConfig.platform == RuntimePlatform.WebGLPlayer)
- {
- UIManager.Instance.OpenUI<UIMainMenu>();
- }
- else
- {
- UIManager.Instance.OpenUI<UILogin>();
- }
- }
-
- // Update is called once per frame
- void Update()
- {
-
- }
- }
|