diff options
Diffstat (limited to 'Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs')
-rw-r--r-- | Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs b/Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs deleted file mode 100644 index 05d3a1a5..00000000 --- a/Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs +++ /dev/null @@ -1,19 +0,0 @@ -using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-
-// 残影特效
-public class ActionEffectGhost : ActionBase
-{
- CharacterGhostEffect m_GhostEffect;
-
- public ActionEffectGhost(CharacterGhostEffect effect)
- {
- m_GhostEffect = effect;
- }
-
- public override void Execute()
- {
- m_GhostEffect.IsEnable = true;
- }
-}
|