大约有 127 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
... img___.src="res/card/select_main_card_bg.png" img___.onload = function(){ var image = new Laya.Image() image.source = img___ Laya.stage.addChild(image) } 舞台上没有图 2017-01-22 添加评论 免费帖 --...
来源: Laya_社区 发布时间: 20170122
...as/comp.atlas", type: Laya.Loader.ATLAS }], Laya.Handler.create(this, this.onLoaded), Laya.Handler.create(this, this.onLoading)); } static aaa(): void { } private onLoaded(): void { var info = new view.GameInfo(); info.zOrder = 99;//置最顶,这句话不写图层看不见 // info.init(); Laya.stage...
来源: Laya_社区 发布时间: 20180507
...资源 Laya.loader.load("res/atlas/comp.atlas", Laya.Handler.create(this, onLoaded)); function onLoaded() { //实例化Panel组件 var panel = new Laya.Panel(); //给panel添加背景色 panel.graphics.drawRect(0, 0, 100, 100, "#ffcccc"); //给panel设置宽高 panel.size(100, 100); //给panel设置...
来源: Laya2.0_文档 发布时间: 20210715
...loader.load([{url: "comp.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); function onLoaded(){ var aa = new Sprite(); Laya.stage.addChild(aa); var texture = new Laya.Texture(); texture.load('comp/zzw.png' ); setTimeout( function(){ aa.graphics....
来源: Laya_社区 发布时间: 20171226
..."res/atlas/flicker/image.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void { //实例UI界面 var testView:TestView = new TestView(); testView.mc.play(0,true); ...
来源: Laya_社区 发布时间: 20170608
...g_url等于“”的时候,底层判断会走到这个接口下面 this.onLoaded(null) load(url, type = null, cache = true, group = null, ignoreCache = false, useWorkerLoader = ILaya.WorkerLoader.enable) { if (!url) { th...
来源: Laya_社区 发布时间: 20201130
...的时候,源码里这一步会的url为“”的时候,会执行this.onLoaded(null)这一步_ _proto.load=function(url,type,cache,group,ignoreCache,useWorkerLoader){ (cache===void 0)&& (cache=true); (ignoreCache===void 0)&& (ignoreCache=false); ...
来源: Laya_社区 发布时间: 20200427
...gend/map.jpg"]; Laya.loader.load(urls, Laya.Loader.IMAGE, this.onLoading).then(() => { this.onAssetLoaded(); }); // 侦听加载失败 Laya.loader.on(Event.ERROR, this, this.onError); } private onAssetLo...
来源: Laya_社区 发布时间: 20240705
...t t.e.parseFont (http://127.0.0.1:63921/game/code.js:1:12413) at e.s.onLoaded (http://127.0.0.1:63921/game/code.js:1:176642) at e.u (http://127.0.0.1:63921/game/code.js:1:295812) at Image._image._image.onload (http://127.0.0.1:63921/game/code.js:1:481938) 2018-05-30 添加评论 ...
来源: Laya_社区 发布时间: 20180530
...oad():void { Laya.loader.load("res/images/rank.json", Handler.create(this, onLoaded)); } private function onLoaded():void { trace("加载成功"); var c:Image = new Image("rank/country.png"); Laya.stage.addChild(c); } 以上是子域项目中加载图集和取资源的代码。代码是参照 htt...
来源: Laya_社区 发布时间: 20180830