Lissandra_the_Ice_Goddess.Evade.Skillshot.IsActive C# (CSharp) Метод

IsActive() публичный Метод

Returns if the skillshot has expired.
public IsActive ( ) : bool
Результат bool
        public bool IsActive()
        {
            if (SpellData.MissileAccel != 0)
            {
                return Environment.TickCount <= StartTick + 5000;
            }

            return Environment.TickCount <=
                   StartTick + SpellData.Delay + SpellData.ExtraDuration +
                   1000 * (Start.Distance(End) / SpellData.MissileSpeed);
        }