1. 程式人生 > >C#——實現物體的移動(unity)

C#——實現物體的移動(unity)

using UnityEngine;

using System.Collections;

public class shiftTest: MonoBehaviour {

public flooat speed;

float AD;

floatWS;

void Update(){

AD = Input.GetAxis("Horizontal");//橫軸

WS = Input.getAxis("Vertical");//縱軸

this.gameObject.transform.Translate(new Vector3(AD * speed,0,WS * speed)); //一句話完成移動控制(這裡只管我們遊戲物件的前後左右移動)  裡邊是我們傳入的方向