Immerseum SDK: VR Simulator (version: BETA-0.9)
       [view as Desktop | Tablet | Mobile]
OnPitchRotationStart Event
Example 
If default InputActions are enabled, then this event fires whenever the pitchRotationInputAction ceases to be at rest.
Syntax
public event EventManager.PitchRotationStartAction OnPitchRotationStart
Example
public class myClass : MonoBehaviour {
    void OnEnable() {
        EventManager.OnPitchRotationStart += myCustomListener;
    }
    
    void OnDisable() {
        EventManager.OnPitchRotationStart -= 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