We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 812bc68 + edf32a2 commit e0ffb90Copy full SHA for e0ffb90
1 file changed
Runtime/SharedResources/Scripts/Transformation/Conversion/InputActionPropertyTransformer.cs
@@ -4,6 +4,7 @@ namespace Tilia.Input.UnityInputSystem.Transformation.Conversion
4
#if ENABLE_INPUT_SYSTEM
5
using UnityEngine.Events;
6
using UnityEngine.InputSystem;
7
+ using Zinnia.Extension;
8
9
/// <summary>
10
/// Provides an abstract base to transform a given <see cref="InputAction"/> to the <see cref="TOutput"/> data type.
@@ -31,7 +32,7 @@ public InputActionProperty Source
31
32
UnbindActions();
33
}
34
source = value;
- if (Application.isPlaying && isActiveAndEnabled)
35
+ if (Application.isPlaying && this.CheckIsActiveAndEnabled())
36
{
37
BindActions();
38
0 commit comments