Immerseum SDK: VR Simulator (version: BETA-0.9)
       [view as Desktop | Tablet | Mobile]
OnPrimaryTriggerDeactivation Event
Example 

If default InputActions are enabled, fired when the default togglePrimaryTriggerInputAction has been received and MovementManager.isPrimaryTriggerInUse is true.

Syntax
public event EventManager.PrimaryTriggerDeactivation OnPrimaryTriggerDeactivation
Example
public class myClass : MonoBehaviour {
    void OnEnable() {
        EventManager.OnPrimaryTriggerDeactivation += myCustomListener;
    }
    
    void OnDisable() {
        EventManager.OnPrimaryTriggerDeactivation -= myCustomListener;
    }
    
    void myCustomListener(InputAction action) {
        // Custom listener logic goes here.
    }
}
See Also

Reference

EventManager Class
EventManager Members

 

 


Copyright (c) 2015 Immerseum Inc. All rights reserved.

Send Feedback