大约有 352 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
Laya_社区(234) Laya2.0_文档(41) Laya3.0_文档(22) Laya2.0_示例(15) Laya_示例(14) Laya3.0_api(10) laya_api(8) Laya2.0_api(8)
... TrackLength) / 2; button.y = Laya.stage.height / 2; button.on(Event.MOUSE_DOWN, this, onMouseDown); Laya.stage.addChild(button); //左侧临界点设为圆形初始位置 beginPosition = button.x; //右侧临界点设置 endPosition = beginPosition + TrackLength; } function drawTrack() { var graph ...
来源: Laya_示例 发布时间: 20241118
...owner:Sprite3D):void { super._initialize(owner); Laya.stage.on(Event.MOUSE_DOWN, this, mouseDown); Laya.stage.on(Event.MOUSE_UP, this, mouseUp); Laya.stage.on(Event.MOUSE_OUT, this, mouseOut); var camera:BaseCamera = owner.scene.currentCamera; 没有了 -- currentCamera 2017-02-18 添加评论 免...
来源: Laya_社区 发布时间: 20170218
...nClick(this, this.onJump) this.view.m_left.on(Laya.Event.MOUSE_DOWN,this, this.onleft) this.view.m_left.on(Laya.Event.MOUSE_UP,this, this.notleft) this.view.m_right.on(Laya.Event.MOUSE_DOWN,this, this.onright) this.view.m_right.on(Laya.Event.MOUSE_UP,t...
来源: Laya_社区 发布时间: 20221207
...释放时(up)、鼠标移动到元素时(over),鼠标按下时(down)各个状态下的文本标签颜色 labelAlign 文本标签的水平对齐模式:left、center、right,默认为居左对齐 labelVAlign 文本标签的垂直对齐模型:top、middle、bottom,默认为居顶...
来源: Laya3.0_文档 发布时间: 20241014
...ChildByName('VideoNode') as Laya.VideoNode; Laya.stage.on(Laya.Event.MOUSE_DOWN,this, ()=>{ console.error('Laya.Event.MOUSE_DOWN'); video.play(); }); 很简单的结构,只有在微信上播放不了 1677851971用户 • 2024-03-16 19:56 测试可以播放了,就是手机微信上视频播放...
来源: Laya_社区 发布时间: 20230825
...th) / 2; this.button.y = Laya.stage.height / 2; this.button.on(Event.MOUSE_DOWN, this, this.onMouseDown); Laya.stage.addChild(this.button); //左侧临界点设为圆形初始位置 beginPosition = this.button.x; //右侧临界点设置 endPosition = beginPosition + TrackLength; } drawTrack() { Laya...
来源: Laya2.0_示例 发布时间: 20241118
... = 20; txt.color = "#ffffff"; Laya.stage.addChild(txt); txt.on(Event.MOUSE_DOWN, this, startScrollText); } /* 开始滚动文本 */ function startScrollText(e) { prevX = txt.mouseX; prevY = txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, scrollText); Laya.stage.on(Event.MOUSE_UP, this, finishScrol...
来源: Laya_示例 发布时间: 20241118
...6[static] 与 Delete 的键控代码值 (46) 关联的常数。Keyboard DOWN : int = 40[static] 与向下箭头键的键控代码值 (40) 关联的常数。Keyboard E : int = 69[static] 与 E 键的键控代码值 (69) 关联的常数。Keyboard END : int = 35[static] 与 End 的键控代...
来源: laya_api 发布时间: 20170929
...6[static] 与 Delete 的键控代码值 (46) 关联的常数。Keyboard DOWN : int = 40[static] 与向下箭头键的键控代码值 (40) 关联的常数。Keyboard E : int = 69[static] 与 E 键的键控代码值 (69) 关联的常数。Keyboard END : int = 35[static] 与 End 的键控代...
来源: Laya2.0_api 发布时间: 20190513
...his.txt.fontSize = 20; this.txt.color = "#ffffff"; this.txt.on(Event.MOUSE_DOWN, this, this.startScrollText); } /* 开始滚动文本 */ startScrollText(e) { const Event = Laya.Event; prevX = this.txt.mouseX; prevY = this.txt.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, this.scrollText); Laya.stage...
来源: Laya2.0_示例 发布时间: 20241118