大约有 127 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0042 秒)
...; var imageSource=new Laya.Browser.window.Image(); var thisObj = this; var onload=function (){ var tex=new Laya.Texture2D(imageSource.width,imageSource.height,1,false,true); tex.wrapModeU=1; tex.wrapModeV=1; tex.loadImageSource(imageSource,true); tex._setCreateURL(url); var tex2=new Laya.Texture(tex...
来源: Laya_社区 发布时间: 20190923
...ram/trunk/ClientLaya2.0/CarCrash/bin/libs/laya.core.js:19128:21) at Loader.onLoaded (file:///E:/CarCrash/Program/trunk/ClientLaya2.0/CarCrash/bin/libs/laya.core.js:19097:21) at EventHandler.runWith (file:///E:/CarCrash/Program/trunk/ClientLaya2.0/CarCrash/bin/libs/laya.core.js:848:38) 调用Laya....
来源: Laya_社区 发布时间: 20190904
...t与png文件同名 mBitmapFont.loadFont("layabmfont.fnt",new Handler(this,onLoaded)); } private function onLoaded():void { init(); } private function init():void { //如果位图字体中,没放空格,最好设置一个空格宽度 mBitmapFont.setSpaceWidth(10); Text.registerBitmapFont(mFontNam...
来源: Laya2.0_文档 发布时间: 20201114
...= (new Laya.SoundManager._soundClass()); sound.load(sourceUrl); thisLoader.onLoaded(sound); } else { thisLoader.event(Laya.Event.ERROR, "Load sound failed"); } } static bindToThis(fun, scope) { var rst = fun; rst = fun.bind(scope); return rst; } _loadHttpRequestWhat(url, contentType) { var...
来源: Laya_社区 发布时间: 20200103
...rl(url:String):String 获取指定资源地址的数据类型。 Loader onLoaded(data:* = null):void 资源加载完成的处理函数。 LoaderEvents Event Summary Defined By complete加载完成后调度。Loader error加载出错时调度。Loader progress加载进度发生改变时...
来源: laya_api 发布时间: 20170929
...个图集 Laya.loader.load("res/atlas/comp.atlas",Laya.Handler.create(this,onload)); 这样写只能添加一个图集,我想问有没有办法用一句代码同时添加其他图集 2018-08-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20180809
...l: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void { var hbox: laya.ui.HBox = new laya.ui.HBox(); for (var i: number = 0; i < 10; i++) { var skin: string; switch (i) { case 0: skin = "comp/bg.png"; break; case 1: skin = "comp/blank.png...
来源: Laya_社区 发布时间: 20170607
... Laya.loader.load("res/atlas/images.atlas",Laya.Handler.create(this,this.onLoaded),null,Laya.Loader.ATLAS); } onLoaded(){ console.info("onLoaded"); this.tiledMap = new Laya.TiledMap(); this.tiledMap.createMap("desert.json", new Laya.Rectangle(0, 0, Laya.stage.width, Laya.stage.height),...
来源: Laya_社区 发布时间: 20171125
...("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除...
来源: Laya2.0_文档 发布时间: 20210714
...("get", "res/atlas/comp.png", true); xhr.responseType = "arraybuffer"; xhr.onload = function () { if (this.status == 200) { var blob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除...
来源: Laya2.0_文档 发布时间: 20210714