码迷,mamicode.com
首页 > 编程语言 > 详细

Unity 制作Load等待小图标

时间:2014-12-30 22:00:10      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

 

技术分享

 

直接上代码:

using UnityEngine;
using System.Collections;

public class LoadRotate : MonoBehaviour
{

    public float speed = 8f;
    public RotateAxis direction = RotateAxis.z;

    // Update is called once per frame
    void Update()
    {
        if (RotateAxis.x == direction)
        {
            this.transform.Rotate(Vector3.right * speed);
        }
        else if (RotateAxis.y == direction)
        {
            this.transform.Rotate(Vector3.up * speed);
        }
        else
        {
            this.transform.Rotate(Vector3.forward * speed);
        }
    }

    public enum RotateAxis
    {
        x,
        y,
        z
    }

}

 

源代码: http://yunpan.cn/cyKqLtRdfpAwN  提取码 5aa7

Unity 制作Load等待小图标

标签:

原文地址:http://www.cnblogs.com/plateFace/p/4194509.html

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