예제 #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();
    }