1、调用外部浏览器 void OnGUI()
{
if (GUI.Button(new Rect(50, 50, 100, 30), "Click"))
{ Process.Start("IExplore.exe", "http://www.sina.com.cn/"); } } 2、调用外部EXE void OnGUI()
{
if (GUI.Button(new Rect(50, 50, 100, 30), "Click"))
{
Process.Start("C:\\Program Files\\Tencent\\QQ\\Bin\\QQ.exe"); } }
unity3d 动态读取外部文件 收藏 分两种情况:
1,加载封装好的内部文件。
var aaa : Material;//空材质
var bbb : GameObject;//要绑定材质的模型
function Start()
{ aaa.mainTexture = Resources.Load("你的资源名,例如“pic1”不需要文件扩展名");
bbb.renderer.material = aaa;
}
2,加载磁盘文件
var bbb : GameObject;
function Start ()
{ var www = new WWW ("file://D:\\pic1.jpg"这里也可以是网络图片地址);
yield www;
bbb.renderer.material.SetTexture("_MainTex", www.texture);
}
动态加载外部文件,内部封装的用Resources.Load加载,外部的用www方法调用
|