大约有 233 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0045 秒)
Laya_社区(101) Laya2.0_api(59) laya_api(55) Laya2.0_文档(8) Laya2.0_示例(4) Laya3.0_文档(3) Laya_示例(2) Laya3.0_api(1)
...侧属性面板中,设置触发播放的事件属性`playEvent`的值为`mousedown`。如图10所示,然后按F12导出UI页面,即可在项目中使用了。 ![图10](img/10.png) (图10) ### 3、在项目中展示动效模板的效果 创建一个`Main.as`的入口类,并设置为默认应...
来源: Laya2.0_文档 发布时间: 20210715
... 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
...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
...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
....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
...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
... switch (evt.type){ case 'mousedown': this._touchIDs[0]=this._id++; if (!MouseManager._isTouchRespond){ _this._isLeftMo...
来源: Laya_社区 发布时间: 20170614
....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
...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
... 事件对象的 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