unity jiaoben

Posted qq77530202

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity jiaoben相关的知识,希望对你有一定的参考价值。

transform.Translate(Input.GetAxis("Horizontal")*Time.deltaTime,0,0); 移动
transform.Translate(0,Input.GetAxis("Vertical") * Time.deltaTime, 0);

 

Instantiate(paodan_bl, transform.position, transform.rotation);实例化泡弹

Destroy(gameObject,1f);1秒后销毁携带脚本的物体

if (Input.GetKey("w"))
{
transform.Translate(Vector3.forward * Time.deltaTime * speed);

}
if (Input.GetKey("s"))
{
transform.Translate(Vector3.back * Time.deltaTime * speed);
}
if (Input.GetKey("a"))
{
transform.Translate(Vector3.left * Time.deltaTime * speed);
}
if (Input.GetKey("d"))
{
transform.Translate(Vector3.right * Time.deltaTime * speed);
}

 

以上是关于unity jiaoben的主要内容,如果未能解决你的问题,请参考以下文章

unity和unity3D的区别

Unity3D资源文件 ③ ( Unity 资源包简介 | 导出 Unity 资源包 | 导出资源包的包含依赖选项 | 导入 Unity 资源包 | Unity 资源商店 )

Unity前景如何?现在unity还能找到工作吗?

Unity学习笔记:unity介绍

unity游戏unity 攻击范围绘制圆圈怎么做

unity如何用脚本刷新窗口