DelegateBasedPressableInput
Introduction
public DelegateBasedPressableInput(Func<bool> isDown, Func<bool> wasJustPressed, Func<bool> wasJustReleased)Code Example - Always Pressed
var alwaysPressed = new DelegateBasedPressableInput(
() => true, // isDown
() => false, // wasJustPressed
() => false);// wasJustReleasedLast updated
Was this helpful?