Immerseum.VRSimulator Namespace > EventManager Class : OnRightBumperActivation Event |
If default InputActions are enabled, fired when the default toggleLeftBumperInputAction has been received.
Be Aware | |||
The default InputAction configuration used by the VRSimulator assumes that the button is not toggle-able. This means this event will be fired each and every time the button is pressed, regardless of whether the button had been pressed before.
|
public event EventManager.RightBumperActivation OnRightBumperActivation
public class myClass : MonoBehaviour { void OnEnable() { EventManager.OnRightBumperActivation += myCustomListener; } void OnDisable() { EventManager.OnRightBumperActivation -= myCustomListener; } void myCustomListener() { // Custom listener logic goes here. } }