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

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

11. 3D模型旋转问题,鼠标移动之后,根据按下移动的X坐标差值判断左右旋转,但是会越转越快,请问是什么问题? [ 79%]

...  监听的鼠标移动事件 Laya.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 =...

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

12. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 79%]

...OWN, this, mouseDown);         Laya.stage.on(Event.MOUSE_UP, this, mouseUp);     })(); //创建地图     function createMap()     {         //创建地图对象         tiledMap = new TiledMap();         //创建Rectangle实例,视口区域 viewRect = n...

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

13. tiledMap类createMap()创建地图 如何理解这个viewRect视口区 [ 79%]

...OWN, this, mouseDown);         Laya.stage.on(Event.MOUSE_UP, this, mouseUp);     })(); //创建地图     function createMap()     {         //创建地图对象         tiledMap = new TiledMap();         //创建Rectangle实例,视口区域 viewRect = n...

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

14. 请问这是原因? [ 74%]

...graphics2; Laya.stage.addChild(sprite2); Laya.stage.on(Event.MOUSE_UP,this,mouseUP); } public var flagCircle:Graphics = new Graphics(); public var flag:Sprite = new Sprite(); //让直线在圆内旋转 public function mouseUP():void{ var point:Point = sprite.globalToLocal(new Point(Laya.stage.mouseX...

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

15. 关于多点触控e.touches问题 [ 67%]

...说就是两个虚拟摇杆 我的方法是设变量 当触发mousemove mouseup mousedown mouseout事件的时候 检查touches的各个坐标是否在摇杆范围内 在的话 把这个坐标保存成变量 不在的话 把变量设为undefined  console.log(e.stageX + ":" + e.stageY); 句正常...

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

16. TiledMap地图 · LayaAir3.0文档 · LAYABOX [ 61%]

...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 mouseMove():void{ var moveX:number = this.MapX - (Laya.stage.mouse...

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

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

...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.Browser.onMobile) { this.AroundByMobileInput(); } else { this.AroundByMouseInput(); } if (!this.canRotation_X) this.targetAn...

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

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

...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.Browser.onMobile) { this.AroundByMobileInput(); } else { this.AroundByMouseInput(); } if (!this.canRotation_X) this.targetAn...

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

19. 使用3D精灵 · LayaAir3.0文档 · LAYABOX [ 59%]

...DOWN, this, this.mouseDown); Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); this.camera = (<Laya.Camera>this.owner); } /** * 监听键盘事件 */ onUpdate(): void { var elapsedTime: number = Laya.timer.delta; if (!isNaN(this.lastMouseX) && !isNaN(this.lastMouseY) && t...

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

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

...a.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.mouseY - this.mLastMouseY); //移动地图视 this.tM...

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