[Unity实战]结合UGUI制作技能系统

参考链接:http://www.unitymanual.com/thread-36543-1-1.html


代码如下:

using UnityEngine;
using System.Collections;
using System;

[Serializable]
public class SkillInfo {

    public string skillName;//技能名称
    public string imagePath;//技能图片路径
    public float coolingTime;//冷却时间

    public SkillInfo(string skillName, string imagePath, float coolingTime)
    {
        this.skillName = skillName;
        this.imagePath = imagePath;
        this.coolingTime = coolingTime;
    }
}

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityEngine.UI;

public class SkillInfoManager : MonoBehaviour{

    public List skillInfos = new List();

	// Use this for initialization
	void Start () 
    {
        Init();

        for (int i = 0; i < skillInfos.Capacity; i++)
        {
            SkillInfo skillInfo = skillInfos[i];
            GameObject btnGO = GameObject.Find(string.Format("SkillButton{0}",i));
            
            //更新技能图片
            btnGO.GetComponent().overrideSprite = Resources.Load(skillInfo.imagePath, typeof(Sprite)) as Sprite;
            //绑定监听
            btnGO.GetComponent

未运行时是这样的:

[Unity实战]结合UGUI制作技能系统_第1张图片

运行时是这样的:

[Unity实战]结合UGUI制作技能系统_第2张图片

点击按钮是这样的:

[Unity实战]结合UGUI制作技能系统_第3张图片


这样就可以看到代码控制事件的强大吧!代码比较简单,就不解释了。。

你可能感兴趣的:(Unity实战)