From 713fb0188d2c0c20a6abde1f45e34a195ea696db Mon Sep 17 00:00:00 2001 From: Syntriax Date: Fri, 10 Jun 2022 11:16:19 +0300 Subject: [PATCH] Reference Name Fix --- VariableMovement/VariableMovementWithState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VariableMovement/VariableMovementWithState.cs b/VariableMovement/VariableMovementWithState.cs index 352d8ee..a9f7d08 100644 --- a/VariableMovement/VariableMovementWithState.cs +++ b/VariableMovement/VariableMovementWithState.cs @@ -69,7 +69,7 @@ namespace Syntriax.Modules.Movement.VariableMovement if (_inputCollection != null) foreach (InputAction action in _inputCollection) - if (action.name == Asset.Name) + if (action.name == Asset.ActionReference) { actionReference = action; actionReference.performed += Performed;