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

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

111. 动效模板(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 43%]

...侧属性面板中,设置触发播放的事件属性`playEvent`的值为`mousedown`。如图10所示,然后按F12导出UI页面,即可在项目中使用了。 ![图10](img/10.png) (图10) ### 3、在项目中展示动效模板的效果 创建一个`Main.as`的入口类,并设置为默认应...

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

112. 基于Cannon.js的物理系统(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 43%]

... box.addComponent(colliderCheck); ``` - 6.射线检测功能 ```typescript mouseDown(){ //获取鼠标点击位置的屏幕坐标 this.point.x = MouseManager.instance.mouseX; this.point.y = MouseManager.instance.mouseY; //由点击的屏幕坐标产生射线 this.camera.viewportPointToRay(this.point...

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

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

...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

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

...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

115. TiledMap地图 · LayaAir3.0文档 · LAYABOX [ 41%]

....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

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

...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

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

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

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

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

....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

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

...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

120. laya.events.Event_API3.0 [ 38%]

... 事件对象的 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