大约有 67 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya_社区(48) Laya2.0_文档(6) laya_api(3) Laya2.0_api(3) Laya2.0_示例(2) Laya_示例(2) Laya3.0_文档(2) Laya3.0_api(1)
....stage.on(Laya.Event.MOUSE_UP,this,this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_DOWN,this,this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE,this,this.mouseMove); private mouseDown():void{ let mX:number = Laya.stage.mouseX; this.lastMouseX = mX; this.isDown = true; } private mouseUp():void{ th...
来源: Laya_社区 发布时间: 20180113
...f不起作用 好像1.7.17类库创建阴影和发光滤镜不起作用哦 MOUSE_DOWN与MOUSE_MOVE同时存在,不起作用,哪位大神可以帮忙看看,是为什么 关于2.0 list的scrollRect 不起作用 问题状态 最新活动: 2017-11-30 18:21 浏览: 894 关注: 2 人 kezhiyu • 201...
来源: Laya_社区 发布时间: 20171130
...码 this.ape.graphics.drawCircle(50, 50, 30, "#ff0000"); this.ape.on(Event.MOUSE_DOWN, this, this.onStartDrag); } private showDragRegion(): void { //拖动限制区域 var dragWidthLimit: number = 350; var dragHeightLimit: number = 200; this.dragRegion = new Rectangle(Laya.stage.width - dragWidthLim...
来源: Laya_社区 发布时间: 20171106
...023 Laya.stage.on(Event.MOUSE_UP, this, onApeRelease); Laya.stage.on(Event.MOUSE_DOWN, this, onApeRelease); 通过 Event 类型 监听动作 class Event { /** 一个空的 Event 对象。用于事件派发中转使用。*/ static EMPTY: Event; /** 定...
来源: Laya_社区 发布时间: 20170601
...= message[static] 定义 message 事件对象的 type 属性值。Event MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseo...
来源: Laya2.0_api 发布时间: 20190513
...= message[static] 定义 message 事件对象的 type 属性值。Event MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseo...
来源: laya_api 发布时间: 20170929
...derColor = "#fa1515"; this.txt.overflow = "scroll"; this.txt.on(Laya.Event.MOUSE_DOWN, this, this.startScrollText); } /* 开始滚动文本 */ startScrollText() { prevX = this.txt.mouseX; prevY = this.txt.mouseY; Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.on(Laya.Event.M...
来源: Laya3.0_文档 发布时间: 20241014
...g = message[static] 定义 message 事件对象的 type 属性值。Event MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseout[s...
来源: Laya2.0_api 发布时间: 20190513
...g = message[static] 定义 message 事件对象的 type 属性值。Event MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseout[s...
来源: laya_api 发布时间: 20170929
...aya.stage.on(Laya.Event.RESIZE,this,this.resize); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); this.resize(); } //地图加载完成的回调 private completeHandler(e: any = null): void { this.onLoaded(); } /** * 移动地图视...
来源: Laya3.0_文档 发布时间: 20230303