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

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

21. laya.ui.UIEvent [ 60%]

...义 message 事件对象的 type 属性值。Event MOUSE_DOWN : String = mousedown[static] 定义 mousedown 事件对象的 type 属性值。Event MOUSE_MOVE : String = mousemove[static] 定义 mousemove 事件对象的 type 属性值。Event MOUSE_OUT : String = mouseout[static] 定义 mouseout ...

来源: laya_api 发布时间: 20170929

22. 3D 鼠标检测 错乱 [ 56%]

... 0){ for (i=0;i < n;i++){ var e=this._eventList; switch (e.type){ case "mousedown": this._mouseTouchDown(); break ; case "mouseup": this._mouseTouchUp(); break ; case "mousemove":; var mousePoint=Input3D._tempPoint; mousePoint.setTo(e.pageX,e.pageY); Laya.stage._canvasTransform.invertTransformPoi...

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

23. 向官方反映1.75引擎库后 事件执行 发生的bug [ 56%]

...        switch (evt.type){                     case 'mousedown':                         this._touchIDs[0]=this._id++;                         if (!MouseManager._isTouchRespond){                             _this._isLeftMo...

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

24. laya.events.Event_API3.0 [ 53%]

... 事件对象的 type 属性值。 Static MOUSE_DOWN MOUSE_DOWN: string = "mousedown" Defined in laya/events/Event.ts:17 定义 mousedown 事件对象的 type 属性值。 Static MOUSE_DRAG MOUSE_DRAG: string = "mousedrag" Defined in laya/events/Event.ts:43 定义 mousemove 事件对象的 type 属...

来源: Laya3.0_api 发布时间: 20231115

25. TiledMap地图 · LayaAir3.0文档 · LAYABOX [ 53%]

....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(); } /** * 移动地图视口 */ private mouseMov...

来源: Laya3.0_文档 发布时间: 20230303

26. 用LayaAir引擎解析Tiled Map地图(JavaScript-2D进阶篇(JS)-扩展模块) [ 52%]

...n(Laya.Event.RESIZE,this,resize); Laya.stage.on(Laya.Event.MOUSE_DOWN,this,mouseDown); Laya.stage.on(Laya.Event.MOUSE_UP,this,mouseUp); resize(); } /** * 移动地图视口 */ function mouseMove(){ var moveX = this.MapX - (Laya.stage.mouseX - this.mLastMouseX); var moveY = this.MapY - (Laya.stage.mo...

来源: Laya2.0_文档 发布时间: 20210715

27. 用LayaAir引擎解析Tiled Map地图(TypeScript-2D进阶篇(TS)-扩展模块) [ 51%]

....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 mouseMove():void{ var moveX:number = this.MapX - (Laya.stage.mouseX - this.mLastMouseX); var moveY:numbe...

来源: Laya2.0_文档 发布时间: 20210715

28. 用LayaAir引擎解析Tiled Map地图(ActionScript-2D进阶篇(AS3)-扩展模块) [ 50%]

...vent.RESIZE,this, this.resize); Laya.stage.on(Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Event.MOUSE_UP, this, this.mouseUp); resize(); } /** * 移动地图视口 */ private function mouseMove():void { var moveX:Number = MapX - (Laya.stage.mouseX - mLastMouseX); var moveY:Number = MapY -...

来源: Laya2.0_文档 发布时间: 20210714

29. 3D中摄像机绕物体旋转该如何实现? [ 48%]

...position, this.AroundPos); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.mouseWheel) } onUpdate(): void { if (Laya.Browse...

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

30. 官方案例里摄像机绕物体旋转脚本的问题 [ 48%]

...position, this.AroundPos); Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseMove); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.mouseWheel) } onUpdate(): void { if (Laya.Browse...

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