示例#1
0
文件: Ability.cs 项目: Alarack/SARPG
    public void ManagedUpdate()
    {
        if (Equipped == false)
        {
            return;
        }

        RecoveryManager.ManagedUpdate();
        EffectManager.ManagedUpdate();
        UpdateTimers();
    }
示例#2
0
    public void ManagedUpdate()
    {
        if (Equipped == false)
        {
            return;
        }

        //if(ParentAbility != null)
        //Debug.Log(abilityName + " is being updated");

        RecoveryManager.ManagedUpdate();
        EffectManager.ManagedUpdate();
        UpdateTimers();
        UpdateSequencedAbilities();
    }