Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Input.GetAccelerationEvent

public static function GetAccelerationEvent(index: int): AccelerationEvent;

Description

Returns specific acceleration measurement which occurred during last frame. (Does not allocate temporary variables).

	// Calculates weighted sum of acceleration measurements which occurred during the last frame
	// Might be handy if you want to get more precise measurements
	function Update () {
		var acceleration:Vector3 = Vector3.zero;
		for (var i = 0; i < Input.accelerationEventCount; ++i) {
			var accEvent:AccelerationEvent = Input.GetAccelerationEvent(i);
			acceleration += accEvent.acceleration * accEvent.deltaTime;
		}
		print (acceleration);
	}