大约有 1,567 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0056 秒)
Laya_社区(1103) Laya2.0_文档(231) Laya_示例(108) Laya2.0_示例(69) Laya3.0_文档(43) Laya3.0_api(11) Laya2.0_api(2)
预加载图集文集在小游戏端导致内存过高 let resArray: Array<any> = [ { url: hyip+"res/atlas/comp/01_shouye.json", type: Loader.ATLAS }, { url: hyip+"res/atlas/comp/02_zhujiemian.json", type: Loader.ATLAS }, { url: hyip+"res/atlas/comp/30_loading.json", type: Loader.ATLAS }, ]; ...
来源: Laya_社区 发布时间: 20180122
...aya.Vector3(1, -1, 0); var dude = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/skinModel/dude/dude.lh")); dude.once(Laya.Event.HIERARCHY_LOADED, this, function () { var customMaterial1 = new CustomMaterial(); customMaterial1.setDiffuseTexture(Laya.Texture2D.load("../../res/threeDimen/skin...
来源: Laya_示例 发布时间: 20241118
...instanceof Laya.SpineTemplet) { let obj: object = tmpDat["_textures"]; for (let key in obj) { if (obj.hasOwnProperty(key)) { let texture = obj[key] as Laya.SpineTexture; let pngUrl = texture.realTexture.url; let res...
来源: Laya_社区 发布时间: 20240429
...载的结合。 这样就结束了吗?并没有! 按刚刚的写法,res/layabox.png明明已经上传到微信小游戏的本地目录,但是如果在使用URL.basePath之后,再次加载res/layabox.png并不会从本地加载使用,而是从网络动态加载使用。这并不是我们...
来源: Laya_社区 发布时间: 20190528
...问题 //预加载主游戏页面图片资源数组 var res:Array<any> = [ "res/atlas/heart.atlas", "res/LayaScene_newScen/Conventional/newScen.ls", ]; //设置progress Handler的第4个...
来源: Laya_社区 发布时间: 20201130
...beta wx.login({ success: function () { wx.getUserInfo({ success: function (res) { console.log('success', res) }, fail: function (res) { console.log("reject",res) } }) } }); 这段代码里的wx对象,报错如下 "wx is not defined" 2018-07-28 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20180728
发布小游戏时提示[ERR]|CompressJS Fail 当发布小游戏时选择混淆压缩js时,提示[ERR]|CompressJS Fail: /Users/apple/Desktop/x5Laya_1.0.8/bin/code.js {"message":"Unexpected token: punc (.)","filename":"0","line":107468,"col":33,"pos":3727663}这个错误,求问 2018-07-31 添加...
来源: Laya_社区 发布时间: 20180731
...onnectSocket({ url: "wss://s.timeinflow.com" }); wx.onSocketOpen(function (res) { // webSocket打开事件处理 console.log('websocket opened.'); var msg = JSON.stringify({ Hello: { Name: 'hi lei lei~' }}) wx.sendSocketMessage({ data: msg }); }); wx.onSocketError(function (res) { // 链接出错时...
来源: Laya_社区 发布时间: 20180528
...(Browser.width, Browser.height, WebGL); Stat.show(); mTexturePath = "../../res/skeleton/" + fileName + "/" + fileName + ".png"; mAniPath = "../../res/skeleton/" + fileName + "/" + fileName + ".sk"; Laya.loader.load([ { url: mTexturePath, type: Loader.IMAGE }, { url: mAniPath, type: Loader.BUFFER }],...
来源: Laya_示例 发布时间: 20241118
...lick); Laya.loader.load([{url: "res/atlas/common.atlas", type: Loader.ATLAS}]); Stat.show(); } private function onClick(e:Event):void { ...
来源: Laya_社区 发布时间: 20180425