Difference between revisions of "DeviceOrientationListener"
From Headbone Creative
(Initial page, includes API information and categories) |
Revision as of 02:15, 17 April 2013
This script receives notifications from the DeviceOrientationDetector when the aspect ratio of the screen changes. It doesn't do a whole lot besides expose an event that passes the new aspect ratio to other listener scripts.
Currently, the following scripts use DeviceOrientationListener to do something when the aspect ratio changes:
Events
The event exposed by this class has the following function signature:
public delegate void OrientationChangedCallback (float aspectRatio)
event OrientationChangedCallback OnOrientationChanged
This is called when the aspect ratio is updated. The new aspect ratio is passed in.