标签:nts iss 分享 深入浅出 blog enter update 渲染 asp
球 转动
按以下布局放置好unity3d的各个组件。设置好渲染、位置、光源、大小等
编写以下代码:
#pragma strict
function Start () {
this.Start();
}
function Update () {
this.transform.Rotate(1,1,-1);
}
效果如链接所看到的:
http://mygame.myhaspl.com/test1/test1.html
也能够创建一个旋转对象,然后在属性框中选择该对象
代码例如以下:
#pragma strict
var tf_object:GameObject;
function Update () {
tf_object.transform.Rotate(1,1,-1);
}
标签:nts iss 分享 深入浅出 blog enter update 渲染 asp
原文地址:http://www.cnblogs.com/yangykaifa/p/6950671.html