大约有 1,569 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0075 秒)
Laya_社区(678) Laya3.0_api(636) Laya2.0_api(70) laya_api(47) Laya2.0_文档(47) Laya3.0_文档(36) Laya2.0_示例(29) Laya_示例(26)
...回收,默认为true,缓动结束之后自动回收到对象池。 * @return 返回Tween对象。 */ static from(target: any, props: any, duration: number, ease: Function = null, complete: Handler = null, delay: number = 0, coverBefore: boolean = false, autoRecover: boolean = true): Tween { retu...
来源: Laya3.0_文档 发布时间: 20241014
...功"); } return resolve(success); }), Laya.Handler.create(this, (pro) => { console.log("lobby ttf 字体加载进度:" + pro); }, null, false)...
来源: Laya_社区 发布时间: 20201104
...如 public set x(val: number) { this._x = val; } public get x(): number { return this._x; } public set y(val: number) { this._y = val; } public get y(): number { return this.__y; } 然后运行 会发现坐标显示正常 但是打包到android 然后再android studio模拟器里运行会发现实...
来源: Laya_社区 发布时间: 20180226
...nput.style.width = "100px"; Laya.Browser.document.body.appendChild(input); return input; } fitDOMElements(){ for (let i = 0; i < arguments.length; i++) { let dom = arguments[i]; Laya.Utils.fitDOMElementInArea(dom, this.form, 100, i * (this.rowSpacing + this.rowHeight), 150, this.rowHeight); } } } ne...
来源: Laya2.0_示例 发布时间: 20241120
... protected _onMessage(msg: any): void { if (!msg || !msg.data) return; var data: any = msg.data; if (this.disableInput && data) { this.event(Event.MESSAGE, data); return; } if (this._input.length ...
来源: Laya_社区 发布时间: 20220822
...骼坐标位置组成的列表 * @param nameOrIndex * @param boneName * @return 骨骼坐标列表 */ public function getBoneCoords(nameOrIndex:*, boneName:String):Array { var arrCoords:Array = ; var aniClipIndex:int = getAniClipIndex(nameOrIndex); var curOriginalData:Float32Array = new Float32Ar...
来源: Laya_社区 发布时间: 20190828
...ites.stack(100, 50, 8, 1, 10, 10, function(x, y) { return Bodies.rectangle(x, y, 50, 20, { collisionFilter: { group: group } }); }); Composites.chain(ropeA, 0.5, 0, -0.5, 0, { stiffness: 0.8, length: 2, render: { type: 'line' }...
来源: Laya_社区 发布时间: 20180323
...!(pth && hash)) { throw new Error('`path` and `hash` required'); } return modifyFilename(pth, (filename, ext) => `${filename}-${hash}${ext}`); }; module.exports.revert = (pth, hash) => { if (!(pth && hash)) { throw new Error('`path` and `hash` required'); } return modifyFilenam...
来源: Laya_社区 发布时间: 20200831
... if (fileObj == null) return null; else return fileObj; return null; } 附件 : --> 2020-05-29 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20200529
...test(this: IEditorEnv.IGameScene, msg: string) { console.log(msg); //hello return "ok"; } } //下面是UI进程的代码 let ret = await Editor.scene.runScript("TestSceneScript.test", "hello"); console.log(ret); //ok 特别的用法,可以通过window对象调用eval执行脚本,用于一些简...
来源: Laya3.0_文档 发布时间: 20241014