summaryrefslogtreecommitdiff
path: root/Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-10-26 08:36:27 +0800
committerchai <chaifix@163.com>2020-10-26 08:36:27 +0800
commit3d3f0b7ede44569ecaab523350feede9fee383c3 (patch)
tree9df6c24adafa7e77287f9f8351746d8da692bf4f /Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs
parent65ed53a40f990e895305ff17a5e48e3cd6b8785b (diff)
* ability system
Diffstat (limited to 'Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs')
-rw-r--r--Assets/Scripts/AbilitySystem/Actions/ActionEffects/ActionEffectGhost.cs19
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;
- }
-}