大约有 22 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0029 秒)
...rl 键是处于活动状态 (true) 还是非活动状态 (false)。 Event currentTarget : Sprite 事件当前冒泡对象。Event delta : int滚轮滑动增量Event keyCode : int键盘值Event keyLocation : uint[read-only] 表示键在键盘上的位置。这对于区分在键盘上多次出现...
来源: laya_api 发布时间: 20170929
...: 连接出错 Event {isTrusted: true, type: "error", target: WebSocket, currentTarget: WebSocket, eventPhase: 2…} 关闭事件 CloseEvent {wasClean: false, code: 1006, reason: "", type: "close", target: WebSocket…} //----------------------------------------------------------------------------...
来源: Laya_社区 发布时间: 20180211
...ay.Sprite; /** 事件当前冒泡对象。*/ currentTarget: laya.display.Sprite; _stoped: boolean; /** 分配给触摸点的唯一标识号(作为 int)。*/ touchId: number; /**键盘值*/ ke...
来源: Laya_社区 发布时间: 20170601
...private onBtnClick(event:Laya.Event): void { let b = event.currentTarget as Laya.Image; console.log('onClickLevel > ' + b.skin); this.removeSelf(); Laya.stage.addChild(new GameMainView()); } 我要怎么从点击的时候传参,然后在点击后的舞台上接受参...
来源: Laya_社区 发布时间: 20190802
...topPropagation() 这个肯定不行,因为它不会影响当前节点 (currentTarget) 中的任何事件侦听器。 还有别的方法吗? 2018-01-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 Mo...
来源: Laya_社区 发布时间: 20180111
....log('onStartDragPicture e', e); } 返回的信息: Event _stoped: false currentTarget: Stage {focus: null, designWidth: 1307, designHeight: 758, canvasRotation: false, canvasDegree: 0, …} nativeEvent: MouseEvent {isTrusted: true, screenX: 906, screenY: 460, clientX: 457, clientY: 278, …} targ...
来源: Laya_社区 发布时间: 20181022
...is, this.onMouseDown); } } onMouseDown(e: Laya.Event) { // console.log(e.currentTarget, e.target); if(e.target == this) { this.startDrag(); } else { this.stopDrag(); } } 判断一下点击对象是否是自己。才处理拖动。 2019-11-21 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 ...
来源: Laya_社区 发布时间: 20191121
...; } private btnClick ( e:Laya.Event ) : void { switch( e.currentTarget ) { case this.btnEnter: // KBEngine.Event.fire break; } } } } 2017-09-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20170923
...ED,mc,onmcloaded); MovieClip(e.target).addLabel("label01",19); MovieClip(e.currenttarget).addLabel("label01",19); 2017-08-09 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 shinestarpvz 赞同来自: 现在2个值...
来源: Laya_社区 发布时间: 20170809
...nction onClick(e:Event):void { switch(e.currentTarget) { case btn1: show(); break; case btn2: ...
来源: Laya_社区 发布时间: 20180425