AccelerometerDevice provides access to device orientation and motion events
from a web browser. The support for orientation and motion varies among
browsers, but it seems that the "acceleration including gravity" component of
DeviceMotion events gives us roughly the data we need.
DeviceMotion events happen whenever they want to happen, but JavaScript won't
let them happen in the middle of a render. When the events happen, we copy
the event data, and then during render operations, other code can poll this
device for the most recent data.
AccelerometerDevice provides access to device orientation and motion events from a web browser. The support for orientation and motion varies among browsers, but it seems that the "acceleration including gravity" component of DeviceMotion events gives us roughly the data we need.
DeviceMotion events happen whenever they want to happen, but JavaScript won't let them happen in the middle of a render. When the events happen, we copy the event data, and then during render operations, other code can poll this device for the most recent data.