大约有 4,338 项符合查询结果, 库内数据总量为 30,790 项。 (搜索耗时: 0.0088 秒)
Laya_社区(2450) Laya3.0_api(673) Laya2.0_api(357) laya_api(289) Laya2.0_文档(271) Laya_示例(157) Laya2.0_示例(116) Laya3.0_文档(25)
...化shader ```typescript //初始化我们的自定义shader public static function initShader() { //所有的attributeMap属性 var attributeMap = { 'a_Position': Laya.VertexMesh.MESH_POSITION0, 'a_Normal': Laya.VertexMesh.MESH_NORMAL0 }; //所有的uniform属性 var uniformMap = { 'u_MvpMatrix': La...
来源: Laya2.0_文档 发布时间: 20210715
...周期。 * @return 指定时间的插补属性的值。 */ public static function elasticOut(t:Number, b:Number, c:Number, d:Number, a:Number = 0, p:Number = 0):Number { /*[DISABLE-ADD-VARIABLE-DEFAULT-VALUE]*/ var s:Number; if (t == 0) return b; if ((t /= d) == 1) return b + c; if (!p) p = d * .3;...
来源: Laya_社区 发布时间: 20180104
...t; var btn = document.getElementById('btn'); btn.addEventListener('click', function(){ document.getElementById("file").click(); }); </script> </body> </html>我想你理解错了,我是想触发原生js的事件,不是去监听,我把两种的demo都上传了,你们可以...
来源: Laya_社区 发布时间: 20170511
...designed explicitly with the capability to change your app’s behavior or functionality after App Review approval, which is not in compliance with App Store Review Guideline 2.5.2 and section 3.3.2 of the Apple Developer Program License Agreement. This code, combined with a remote resource, can ...
来源: Laya_社区 发布时间: 20171221
...p://layaair.ldc.layabox.com ... ot%3B ></script> <script> $(function(){ var layaDiv = $('.layaDiv'); var msgDiv = $('.msgDiv'); var clickIndex = 0; layaDiv.append(Laya.init(layaDiv.width(), layaDiv.height())); // Laya.stage.scaleMode = Laya.Stage.NO_SCALE; Laya.stage.scaleMode = Laya....
来源: Laya_社区 发布时间: 20170427
...D:/layadata/laya2.0/Sokoban_Ts_Weixin/bin/libs/laya.core.js:16315:8) at Function.Loader.checkNext (file:///D:/layadata/laya2.0/Sokoban_Ts_Weixin/bin/libs/laya.core.js:16351:40) at Loader.__proto.complete (file:///D:/layadata/laya2.0/Sokoban_Ts_Weixin/bin/libs/laya.core.js:16303:34) at Loade...
来源: Laya_社区 发布时间: 20190304
...ned TypeError: Cannot read property 'USER_DATA_PATH' of undefined at Function.MiniFileMgr.setNativeFileDir (http://127.0.0.1:37684/game/code.js:21639:46) at Function.MiniAdpter.init (http://127.0.0.1:37684/game/code.js:21174:16) at Object.init (http://127.0.0.1:37684/game/code.js:1...
来源: Laya_社区 发布时间: 20180524
...会打扰到用户。 1,属性 属性 类型 描述 onreadystatechange function 一个JavaScript函数对象,当readyState属性改变时会调用它。 readyState unsigned short 请求的五种状态 response varies 响应实体的类型由 responseType 来指定, 可以是 ArrayBuffer ,Blo...
来源: Laya3.0_文档 发布时间: 20241014
...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
...建 Parameters url: string Returns boolean off off(type: string, listener: Function): EventDispatcher off(type: string, caller: any, listener?: Function, args?: any[]): EventDispatcher Inherited from EventDispatcher.off Defined in laya/events/EventDispatcher.ts:112 从 EventDispatcher 对象中删...
来源: Laya3.0_api 发布时间: 20231115