大约有 795 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0054 秒)
...zdaze='); console.log(Gzdaze); Laya.loader.load(Gzdaze.dialogList, Handler.create(this, this.startLoaded)); 代码是这样的 报错 Access to Image at 'http://caifu-1251177394.file.myqcloud.com/beta/book/bookLaya/img/progressBar$bar.png' from origin 'http://bookportal.com' has been blocked by CORS...
来源: Laya_社区 发布时间: 20180208
... Laya.Scene3D.load("res/LayaScene_game/Conventional/game.ls",Laya.Handler.create(null,function(scene3d){ // HelperApp.a = scene3d; //加载完成获取到了Scene3d scene3d.name = 'good'; self.owner.addChild(scene3d); ...
来源: Laya_社区 发布时间: 20220506
...ont.json",type:Loader.ATLAS}); Laya.loader.load(imgArr,Handler.create(this,onAssetLoaded),Handler.create(this,onProgress,null,false)); } (function() { function Lload() { Lload.__super.call(this); this.dh(); this.btn.on(Event.MOUSE_DOWN,g...
来源: Laya_社区 发布时间: 20160815
...window下Animation打开动画编辑界面,快捷键Ctrl+6。 2、点击create按钮创建动画并取名,本例中取名使用的默认名字New Animation,保存后在资源管理器中会生成动画文件New Animation。 3、选择时间轴上时间,修改材质的漫反射颜色,重复...
来源: Laya2.0_文档 发布时间: 20210714
...过回调方法绘制图片并添加到舞台 Laya.loader.load(Res,Handler.create(this,graphicsImg)); })(); function graphicsImg() { img = new Sprite(); //获取图片资源,绘制到画布 img.graphics.drawTexture(Laya.loader.getRes(Res),150,50); //添加到舞台 Laya.stage.addChild(img); } })()...
来源: Laya2.0_文档 发布时间: 20210715
...写的。。。 Laya.loader.load("res/Dragon/Dragon.sk",Handler.create(this,onLoaded),null,Loader.BUFFER); geo • 2018-06-22 22:56 @Monica:一定要指定Loader.BUFFER吗?
来源: Laya_社区 发布时间: 20171031
...ya.loader.load(["./comp/progress.png", "./comp/progress$bar.png"], Handler.create(this, onLoadComplete)); } console.log(1); Laya.class(Loadings,"Loadings",_super); function onLoadComplete() { progressBar = new ProgressBar("./comp/progress.png"); progressBar.width = 400; progressBar.x = (Laya.stage.w...
来源: Laya_社区 发布时间: 20171230
...ntion, only resource files in the level-1 directory are loaded Laya.loader.create([{ url: "xx.zip", type:"ZIP"}]) [/size][/code] 如果只需要加载zip包中的部分资源,或者资源路径在多级目录下。可以在constructParams中进行配置,来加载指定文件资源。[size=14][co...
来源: Laya_社区 发布时间: 20211227
...面的配置文件:Laya.loader.load(['res/atlas/game.json'],Laya.Handler.create(this,Slot.onSourcesLoaded), Laya.Handler.create(this,Slot.onSourcesLoading,null,false),Laya.Loader.ATLAS);这样写似乎监听的当前加载进度不太对,我总共有6张未打包图和1张打包图 打印的结...
来源: Laya_社区 发布时间: 20170225
...son/ENDLESS_TABLE.json"; var strJson=Laya.loader.load(fileURL,Handler.create(this,readJsonFinish),null,Loader.JSON); function readJsonFinish() { console.log(strJson); var contact = JSON.parse(strJson); } } cuixueying • 2016-07-26 11:13 Laya.loader.load是预加载JSON字符串,并非是获...
来源: Laya_社区 发布时间: 20151110