大约有 8 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0025 秒)
...ext); } /* 停止滚动文本 */ function finishScrollText(e) { Laya.stage.off(Event.MOUSE_MOVE, this, scrollText); Laya.stage.off(Event.MOUSE_UP, this, finishScrollText); } /* 鼠标滚动文本 */ function scrollText(e) { var nowX = txt.mouseX; var nowY = txt.mouseY; txt.scrollX += prevX - nowX; t...
来源: Laya2.0_文档 发布时间: 20210714
...动文本 */ private function finishScrollText(e:Event):void { Laya.stage.off(Event.MOUSE_MOVE, this, scrollText); Laya.stage.off(Event.MOUSE_UP, this, finishScrollText); } /* 鼠标滚动文本 */ private function scrollText(e:Event):void { var nowX:Number = txt.mouseX; var nowY:Number = txt.mouseY...
来源: Laya2.0_文档 发布时间: 20210715
...止滚动文本 */ private finishScrollText(e: Event): void { Laya.stage.off(Event.MOUSE_MOVE, this, this.scrollText); Laya.stage.off(Event.MOUSE_UP, this, this.finishScrollText); } /* 鼠标滚动文本 */ private scrollText(e: Event): void { var nowX: number = this.txt.mouseX; var nowY: number = t...
来源: Laya2.0_文档 发布时间: 20210715
...射探针的blend(混合模式)支持,只是简单的simple模式和off模式。除了这两点,其它的Unity反射探针属性,LayaAir引擎中都是支持的。如下图所示,红框内都是支持导出使用的属性。 ![img](img/5.png) 一些常规的属性使用就不在这里介...
来源: Laya2.0_文档 发布时间: 20210715
...会在发布后,输出对应日志等级的相关输出信息,如果为off,则会不输出任何信息。 ![img](img/5.png) 关于如何查看日志,我们如果不关掉发布项目的界面,是可以直接查看输出的日志的,如下图所示: 其实,还可以在PC命令行下...
来源: Laya2.0_文档 发布时间: 20210714
...this.MapY = this.MapY - (Laya.stage.mouseY - this.mLastMouseY); Laya.stage.off(Laya.Event.MOUSE_MOVE, this, mouseMove); } function mouseDown(){ this.mLastMouseX = Laya.stage.mouseX; this.mLastMouseY = Laya.stage.mouseY; Laya.stage.on(Laya.Event.MOUSE_MOVE,this,mouseMove); } /** * 改变视口大小 ...
来源: Laya2.0_文档 发布时间: 20210715
...this.MapY = this.MapY - (Laya.stage.mouseY - this.mLastMouseY); Laya.stage.off(Laya.Event.MOUSE_MOVE, this, this.mouseMove); } private mouseDown():void { this.mLastMouseX = Laya.stage.mouseX; this.mLastMouseY = Laya.stage.mouseY; Laya.stage.on(Laya.Event.MOUSE_MOVE, this, this.mouseMove); } /** * ...
来源: Laya2.0_文档 发布时间: 20210715
... mLastMouseX); MapY = MapY - (Laya.stage.mouseY - mLastMouseY); Laya.stage.off(Event.MOUSE_MOVE, this, this.mouseMove); } private function mouseDown():void { mLastMouseX = Laya.stage.mouseX; mLastMouseY = Laya.stage.mouseY; Laya.stage.on(Event.MOUSE_MOVE, this, this.mouseMove); } /** * 改变视口...
来源: Laya2.0_文档 发布时间: 20210714