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

显示伤害和治疗过程

时间:2014-11-27 18:00:20      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   for   on   div   

using UnityEngine;
using System.Collections;

public class TestHUText : MonoBehaviour {
    private HUDText text;

    // Use this for initialization
    void Start () {
        text = this.GetComponent<HUDText>();
    }
    
    // Update is called once per frame
    void Update () {
        if (Input.GetMouseButtonDown(0)) {
            text.Add(-10, Color.red, 1f);
        }
        if (Input.GetMouseButtonDown(1)) {
            text.Add(10,Color.green,1f);
        }
    
    }
}

 

显示伤害和治疗过程

标签:style   blog   io   ar   color   sp   for   on   div   

原文地址:http://www.cnblogs.com/heisaijuzhen/p/4126836.html

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