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

スクリプト言語

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

Input.GetAxisRaw

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function GetAxisRaw(axisName: string): float;
public static float GetAxisRaw(string axisName);
public static def GetAxisRaw(axisName as string) as float

Description

/axisName/ で識別される仮想軸の平滑化フィルタが適用されていない値を返します

値はキーボードとジョイスティックの入力によって-1から1の範囲になります。 入力がスムースになっていないので、キーボード入力はいつも -1, 0, 1のどれかになります。 これは全てのキーボード入力の平衡化フィルタを自前で処理したい場合に便利です。

	function Update () {
		var speed : float = Input.GetAxisRaw("Horizontal") * Time.deltaTime;
		transform.Rotate (0, speed, 0);	
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Update() {
        float speed = Input.GetAxisRaw("Horizontal") * Time.deltaTime;
        transform.Rotate(0, speed, 0);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Update() as void:
		speed as float = (Input.GetAxisRaw('Horizontal') * Time.deltaTime)
		transform.Rotate(0, speed, 0)