using ET.EventType; using ET; using System; using System.Collections.Generic; namespace ET { public class RemoveTransPointEvent : AEvent { public override async ETTask Run(RemoveTransPoint args) { TransPointComponent component = args.zoneScene.GetComponent(); component.RemoveAll(); await ETTask.CompletedTask; } } }