强子 发表于 2013-3-5 08:57

动态加载场景资源代码JS


var gui : GUITexture;
var find : GameObject;
var GameObjectName;
function Awake(){
//找到guiTexture,当初始加载时让其不可用
   find=GameObject.Find("guiTexture");
   find.active=false;
   GameObjectName=GameObject.Find("Cube").tag;//通过tag来传递参数给www()函数
}

function OnMouseDown(){
   find.active=true;
   //Debug.Log(GameObjectName);
   var SenceName=GameObjectName;
   www(SenceName);
}

function www(Cubename){
// Store the original pixel inset
// and modify it from there.
var originalPixelRect = gui.pixelInset;

功能及使用说明:<br>1、建立一个Cube,然后将这段代码加到Cube上。<br>2、建立一个GUITexture,并命名为guiTexture,选择Texture。这个GUITexture主要是用作进度条的。<br>功能:动态加载网上或者本地场景<br>点击Cube,加载场景,等进度条不再变化时进入你想进入的场景,点击时Cube没有变化,希望大家可以完善它。<br><br>

// Update the progress bar by scaling the gui texture
// until we reach the end
// var stream=new WWW("http://unity3d.com/gallery/hosted-demos/dressingroom.unity3d");本地连接官网上的例子
var stream=new WWW(""+Cubename+".unity3d");//CubeName为你将要下载的场景名字
while (!stream.isDone)
{
gui.pixelInset.xMax = originalPixelRect.xMin+ stream.progress * originalPixelRect.width;
yield;
}
// Update it one last time before loading
gui.pixelInset.xMax = originalPixelRect.xMax;
stream.LoadUnityWeb();
}
@script RequireComponent (GUITexture)

lovesky4 发表于 2013-4-6 21:17

{:5_424:}{:5_424:}{:5_424:}{:5_424:}

angel29hao 发表于 2017-3-6 15:14

好帖就是要顶

灵之舞 发表于 2017-3-6 15:56

顶顶多好

灵之舞 发表于 2017-3-6 15:51

真心顶

葉明豬 发表于 2017-3-6 15:07

很好哦

Mr._chen。 发表于 2017-3-6 15:15

不错不错

kaximu 发表于 2017-4-27 17:42

很不错

bo255261 发表于 2017-4-27 17:46

楼主是超人

lbelis 发表于 2017-4-27 18:09

顶顶多好
页: [1]
查看完整版本: 动态加载场景资源代码JS