Immerseum SDK: VR Simulator (version: BETA-0.9)
       [view as Desktop | Tablet | Mobile]
OnSecondaryButtonDeactivation Event
Example 
Event provided for extensibility of default InputActions. Intended to be used when the button represents an "on / off" toggle, with one InputAction toggling it on (and therefore firing OnSecondaryButtonActivation) and a different InputAction toggling it off (and thus firing OnSecondaryButtonDeactivation).
Syntax
public event EventManager.SecondaryButtonDeactivation OnSecondaryButtonDeactivation
Example
public class myClass : MonoBehaviour {
    void OnEnable() {
        EventManager.OnSecondaryButtonDeactivation += myCustomListener;
    }
    
    void OnDisable() {
        EventManager.OnSecondaryButtonDeactivation -= myCustomListener;
    }
    
    void myCustomListener() {
        // Custom listener logic goes here.
    }
}
See Also

Reference

EventManager Class
EventManager Members

 

 


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

Send Feedback