首页 > 代码库 > (NGUI)UISprite 切换图集
(NGUI)UISprite 切换图集
UISprite是可以使用代码动态切换图集的
using UnityEngine;using System.Collections;public class SpriteAtlasTest : MonoBehaviour { private UISprite _sprite; public UIAtlas atlas; public UIAtlas atlas2; // Use this for initialization void Start () { _sprite = GetComponent<UISprite>(); } // Update is called once per frame void Update () { if(Input.GetMouseButtonDown(0)) { _sprite.atlas = atlas; _sprite.spriteName = "GoodDirt"; } if(Input.GetMouseButtonDown(1)) { _sprite.atlas = atlas2; _sprite.spriteName = "NGUI"; } }}
这样就是使用UISprite来制作图标了,比如物品图标,可以分别存在不同的图集里面,根据配置物品icon在哪一个图集,在需要显示的时候动态指定图集就可以了~
(NGUI)UISprite 切换图集
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。