• 大小: 49.78M
    文件类型: .unitypack
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 游戏  

资源简介


using UnityEngine; using System.Collections; public class Move : MonoBehaviour { int speed=5; float n=20.1f; // Use this for initialization void Start () { } // Update is called once per frame void Update () { float x = Input.GetAxis ("Horizontal")*Time.deltaTime * speed; float z = Input.GetAxis ("Vertical")*Time.deltaTime * speed; transform.Translate (x,0,z); } }

资源截图

代码片段和文件信息

评论

共有 条评论