protected void ShowFlyword(FlyWordType type, int value) { if (IsDead) { return; } //TODO:显示飞字 }
protected void ShowFlyword(FlyWordType type, int value) { if (IsDead) { return; } FlyWordData data = new FlyWordData { Type = type, Value = value, Target = CachedTransform, Height = Height }; FlyWordManager.Instance.Show(data); }