Immerseum SDK: VR Simulator (version: BETA-0.9)
       [view as Desktop | Tablet | Mobile]
OnViewButtonDeactivation 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 OnViewButtonActivation) and a different InputAction toggling it off (and thus firing OnViewButtonDeactivation).
Syntax
public event EventManager.ViewButtonDeactivation OnViewButtonDeactivation
Example
public class myClass : MonoBehaviour {
    void OnEnable() {
        EventManager.OnViewButtonDeactivation += myCustomListener;
    }
    
    void OnDisable() {
        EventManager.OnViewButtonDeactivation -= 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