• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,569 项符合查询结果, 库内数据总量为 30,782 项。 (搜索耗时: 0.0060 秒)

801. 缓动 · LayaAir3.0文档 · LAYABOX [ 67%]

...回收,默认为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

802. Laya2.6.0 升级至Laya2.8.0 Native环境 加载ttf 字体不生效 [ 66%]

...功");                 }                 return resolve(success);             }), Laya.Handler.create(this, (pro) => {                 console.log("lobby ttf 字体加载进度:" + pro);             }, null, false)...

来源: Laya_社区 发布时间: 20201104

803. 重写X Y在android studio里运行会变成00 [ 66%]

...如 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

804. DOM元素-表单输入 [ 66%]

...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

805. 引擎socket类_onMessage bug [ 66%]

... protected _onMessage(msg: any): void {         if (!msg || !msg.data) return;         var data: any = msg.data;         if (this.disableInput &amp;&amp; data) {             this.event(Event.MESSAGE, data);             return;         }         if (this._input.length ...

来源: Laya_社区 发布时间: 20220822

806. spine骨骼动画如何获取某个骨骼的坐标 [ 66%]

...骼坐标位置组成的列表 * @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

807. 物理引擎显示旋转问题 [ 66%]

...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

808. rev-path的nodejs库被修改了,导致版本管理失效 [ 66%]

...!(pth &amp;&amp; hash)) { throw new Error('`path` and `hash` required'); } return modifyFilename(pth, (filename, ext) =&gt; `${filename}-${hash}${ext}`); }; module.exports.revert = (pth, hash) =&gt; { if (!(pth &amp;&amp; hash)) { throw new Error('`path` and `hash` required'); } return modifyFilenam...

来源: Laya_社区 发布时间: 20200831

809. 关于laya无法缓存非图片、声音文件bug [ 66%]

...         if (fileObj == null)                 return null;             else                 return fileObj;             return null;         }   附件 : --> 2020-05-29 添加评论 免费帖 --> 分享 微博 QZONE 微...

来源: Laya_社区 发布时间: 20200529

810. 插件开发说明 · LayaAir3.0文档 · LAYABOX [ 66%]

...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