码迷,mamicode.com
首页 > 其他好文 > 详细

第一个脚本

时间:2017-04-04 09:35:07      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:cti   ict   span   axis   pre   速度   tran   for   code   

----创建一个cube,加入代码

#pragma strict

function Start () {

}

function Update () {
       transform.Translate(Input.GetAxis("Horizontal"),0,
       Input.GetAxis("Vertical"));

}

--------修改移动速度

#pragma strict

function Start () {

}
var speed = 5.0;
function Update () {
       
       var x = Input.GetAxis("Horizontal")*Time.deltaTime*speed;
       var z = Input.GetAxis("Vertical")*Time.deltaTime*speed;
       transform.Translate(x,0,z);

}

 

第一个脚本

标签:cti   ict   span   axis   pre   速度   tran   for   code   

原文地址:http://www.cnblogs.com/Mrerdong/p/6664255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!