当前位置:   article > 正文

C#——实现物体的移动(unity)_c#移动主体物

c#移动主体物
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)); //一句话完成移动控制(这里只管我们游戏对象的前后左右移动)  里边是我们传入的方向

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/178717
推荐阅读
相关标签
  

闽ICP备14008679号