1
This commit is contained in:
@@ -4,6 +4,7 @@ using UnityEngine;
|
||||
using UnityEngine.InputSystem;
|
||||
using System;
|
||||
using System.Linq;
|
||||
using UnityEngine.InputSystem.Controls;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
@@ -11,7 +12,7 @@ namespace BITKit
|
||||
{
|
||||
public static bool JustPressed(this InputAction.CallbackContext self)
|
||||
{
|
||||
return self.interaction is null && self.started;
|
||||
return self is { started:true, control: ButtonControl { wasPressedThisFrame: true , isPressed:true} };
|
||||
}
|
||||
public static InputAction RegisterCallback(this InputAction self, Action<InputAction.CallbackContext> action)
|
||||
{
|
||||
|
Reference in New Issue
Block a user