后处理+FEEL完全改进
This commit is contained in:
@@ -20,7 +20,7 @@ namespace Cielonos.MainGame.Characters
|
||||
{
|
||||
public event Action OnInteract;
|
||||
|
||||
public event Action OnDash;
|
||||
public event Action<Vector3> OnDash;
|
||||
public event Action OnDodge;
|
||||
|
||||
public event Action OnLockOnTarget;
|
||||
@@ -63,7 +63,7 @@ namespace Cielonos.MainGame.Characters
|
||||
{
|
||||
public void Interact() => OnInteract?.Invoke();
|
||||
|
||||
public void Dash() => OnDash?.Invoke();
|
||||
public void Dash(Vector3 direction) => OnDash?.Invoke(direction);
|
||||
|
||||
public void Dodge() => OnDodge?.Invoke();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user