大约有 2,843 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0070 秒)
Laya_社区(1671) Laya3.0_api(672) Laya2.0_文档(152) Laya2.0_api(128) laya_api(122) Laya3.0_文档(71) Laya2.0_示例(16) Laya_示例(11)
...// transaction字段用于 唯一标 识一个请求 req.message = msg; if(type == 1) //朋友圈 req.scene = SendMessageToWX.Req.WXSceneTimeline; else if(type == 2) //好友 req.scene = SendMessageToWX.Req.WXSceneSession; // 调用api 接口发送数据到微信 api.sendReq(req) ; } 传过去的...
来源: Laya_社区 发布时间: 20180329
...true) xhr.setRequestHeader("Accept", "*/*"); xhr.setRequestHeader("Content-Type", "application/json"); 还是说用参考代码里的HttpRequest() var xhr = new Laya.HttpRequest(); xhr.http.setRequestHeader('Content-Type','application/x-www-form-urlencoded'); xhr.once(Laya.Event.COMPLETE, this, this...
来源: Laya_社区 发布时间: 20180704
... decode encode init isBase64String Legend Object literal Variable Function Type alias Class Class with type parameter Static property Static method Enumeration Interface
来源: Laya3.0_api 发布时间: 20231115
...然后代码中: //加载图集 asset.push( { url: NVHAIDAOMAO_JSON_URL, type: Laya.Loader.ATLAS }, { url: WAR_JSON_URL, type: Laya.Loader.ATLAS } ); Laya.loader.load(asset, laya.utils.Handler.create(this, onLoaded), laya.utils.Handler.create(this, onLoading, null, false)); // 使用图集 var arr...
来源: Laya_社区 发布时间: 20170326
... }); hr.send(url, JSON.stringify(data), 'post', 'text', ['content-type', 'application/json;charset=UTF-8', "sessionid", this.sessionId]); 其中,['content-type', 'application/json;charset=UTF-8', "sessionid", this.sessionId]是http header请求头的参数,在LayaAir 1.0下是...
来源: Laya_社区 发布时间: 20190829
...域的属性为:width、height、hitArea,优先级顺序为:hitArea(type:HitArea)>hitArea(type:Rectangle)>width/height。 Sprite mouseX : Number[read-only] 返回鼠标在此对象坐标系上的 X 轴坐标信息。 Sprite mouseY : Number[read-only] 返回鼠标在此对象坐标系...
来源: laya_api 发布时间: 20170929
...ying 赞同来自: asdf131 <!-- 物理引擎matter.js --> <script type="text/javascript" src="libs/matter.js"></script> <script type="text/javascript" src="libs/LayaRender.js"></script>//注意此处是LayaRender.js而并非matter-RenderLaya.js我们的问题,新版...
来源: Laya_社区 发布时间: 20170425
TypeError: Cannot read property 'getSubShaderAt' of undefined laya2.0以上自定义的shader会出这个问题。laya2.4 2.5 2.6beta版本都试过了。 项目是1.8版本提升到2.5.0版本的,逻辑上都没问题。但是shader会报这个错。替换官方内置的shader正常,我...
来源: Laya_社区 发布时间: 20200401
...ir性能全球领先,支持2D、3D、VR开发,支持AS3、JavaScript、TypeScript三种开发语言、LayaAirIDE让项目开发更高效。Stage = Laya.Stage; Event = Laya.Event; Box = Laya.Box; List = Laya.List; Handler = Laya.Handler; WebGL = Laya.WebGL; Animation = Laya.Animation; Label = Lay...
来源: Laya2.0_示例 发布时间: 20241120
...dler; Laya.loader.load([{ url: ['res/bitmapFont/test.fnt'], type: Laya.Loader.FONT }], Handler.create(this, () => { console.log('bitmapFont loaded'); this.onFontLoaded(); }), Handler.create(this, (progress) => {...
来源: Laya_社区 发布时间: 20190225