言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Input.accelerationEvents

public static var accelerationEvents: AccelerationEvent[];

Description

最後のフレーム間で発生した測定によって得た加速度の値 (Read Only) (一時的な変数を割り当てます)

	// 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 accEvent : AccelerationEvent in Input.accelerationEvents) {
			acceleration += accEvent.acceleration * accEvent.deltaTime;
		}
		print (acceleration);
	}