zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/ModelView/Event/AppStartInitFinish_StartUpd...

20 lines
478 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ET.EventType;
using libx;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace ET
{
public class AppStartInitFinish_StartUpdater : AEvent<AppStartInitFinish>
{
public override async ETTask Run(AppStartInitFinish args)
{
UpdateScreen updater = GameObject.Find("Updater/UpdateScreen").GetComponent<UpdateScreen>();
updater.enabled = true;
await ETTask.CompletedTask;
}
}
}