大约有 474 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
Laya_社区(251) Laya_示例(61) Laya3.0_api(39) Laya2.0_文档(33) Laya2.0_api(28) Laya2.0_示例(25) laya_api(21) Laya3.0_文档(16)
...age = this.list_rule.scrollBar.max / this.list_rule.totalPage; let index = Math.floor(value / page) if (index > 5) index = 5; this.setCurPage(index) } public onMouse(e: Laya.Event, index: number): void { if (e.type == Laya.Event.MOUSE_DOWN) { this.m_downValue = this.list_rule.scrollBar.value; } e...
来源: Laya_社区 发布时间: 20171202
...f(Laya.KeyBoardManager.hasKeyDown(87)) //'w' { Matter.Body.setAngle(partA, Math.PI/6); } }; 注意,不要在创建comp的时候立刻对comp调用setAngle。 问题分析: 查看LayaRender.Body渲染函数发现,Body的渲染只是渲染body自己,并没有对所有part进...
来源: Laya_社区 发布时间: 20180625
...age = this.list_rule.scrollBar.max / this.list_rule.totalPage; let index = Math.floor(value / page) if (index > 5) index = 5; this.setCurPage(index) } public onMouse(e: Laya.Event, index: number): void { if (e.type == Laya.Event.MOUSE_DOWN) { this.m_downValue = this.list_rule.scrollBar.value; } e...
来源: Laya_社区 发布时间: 20181112
... p2=下.parent.localToGlobal(下x,下.y), 2、中间起始坐标 = p1.y + Math.abs(p2.y - p1.y)/2; 2018-05-18 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁定, 无法添加新回复 发起人 HumbleDust 相关问题 发起问题须知,必看...
来源: Laya_社区 发布时间: 20180502
...ay.Animation; var Stage = laya.display.Stage; var Rectangle = laya.maths.Rectangle; var Loader = laya.net.Loader; var Browser = laya.utils.Browser; var Handler = laya.utils.Handler; var WebGL = laya.webgl.WebGL; var AniConfPath = "res/1.json"; Laya.loader.load(AniConfPa...
来源: Laya_社区 发布时间: 20160712
...会被保存到场景文件中 get degree() { return this._radian * (180 / Math.PI);//由于自己没有序列化保存,需要把_radian存下来的弧度反算回角度,用于IDE属性面板显示 } set degree(value: number) { this._radian = value * (Math.PI / 180);//把输入的角度值,转...
来源: Laya3.0_文档 发布时间: 20241014
...age = this.list_rule.scrollBar.max / this.list_rule.totalPage; let index = Math.floor(value / page) if (index > 5) index = 5; this.setCurPage(index) } public onMouse(e: Laya.Event, index: number): void { if (e.type == Laya.Event.MOUSE_DOWN) { this.m_downValue = this.list_rule.scrollBar.value; } e...
来源: Laya_社区 发布时间: 20180724
...xt 缓动对象 */ private updateColor(txt:Laya.Text):void{ var c:number = Math.floor(Math.random()*3); switch (c) { case 0: txt.color = "#eee000"; break; case 1: txt.color = "#ffffff"; break; case 2: txt.color = "#ff0000"; break; default: txt.color = "#eee000"; break; } } /** * 缓动完成后的...
来源: Laya2.0_文档 发布时间: 20210715
... */ protected _updateRotation(): void { if (Math.abs(this.yawPitchRoll.y) < 1.50) { Laya.Quaternion.createFromYawPitchRoll(this.yawPitchRoll.x, this.yawPitchRoll.y, this.yawPitchRoll.z, this.tempRotationZ); this.tempRot...
来源: Laya_社区 发布时间: 20200707
...xt 缓动对象 */ private updateColor(txt:Laya.Text):void{ var c:number = Math.floor(Math.random()*3); switch (c) { case 0: txt.color = "#eee000"; break; case 1: txt.color = "#ffffff"; break; case 2: txt.color = "#ff0000"; break; default: txt.color = "#eee000"; break; } } 代码运行时,由于up...
来源: Laya3.0_文档 发布时间: 20241014