酷熊科技工作积累 ----------- Unity3D 读取 图片
Posted silent-bobo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了酷熊科技工作积累 ----------- Unity3D 读取 图片相关的知识,希望对你有一定的参考价值。
UISprite2D spMoney;
// 钻石建造卷图标
string path = ResourcePath.Icon.money + "/" + ""; // 读取本地路径
spMoney.sprite2D = NGUITools.LoadAsset<Sprite>(path); // 将读取的路径转化成sprite格式
// 金币建造卷图标
Texture2D textureGoldBuild = Resources.Load("Icon/money/") as Texture2D; // 将读取的本地的路径转化成Texture2D类型
Sprite spriteGoldBuild = Sprite.Create(
textureGoldBuild,
new Rect(0, 0, textureGoldBuild.width, textureGoldBuild.height),
new Vector2(0.5f, 0.5f)
);
spMoney.sprite2D = spriteGoldBuild;
以上是关于酷熊科技工作积累 ----------- Unity3D 读取 图片的主要内容,如果未能解决你的问题,请参考以下文章
酷熊科技工作积累 ----------- Unity3D 读取 图片
酷熊科技工作积累 ----------- Unity3D / c 语言 使用 Stringbuilder 引用头文件 using System.Text
酷熊科技工作积累 ----------- Unity3d中的Awake()OnEnable()Start()等默认函数的执行顺序和生命周期