Beispiel #1
0
        protected void ShowFlyword(FlyWordType type, int value)
        {
            if (IsDead)
            {
                return;
            }

            //TODO:显示飞字
        }
Beispiel #2
0
        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);
        }