大约有 2 项符合查询结果, 库内数据总量为 30,903 项。 (搜索耗时: 0.0011 秒)
...; Laya.stage.on(Laya.Event.MOUSE_DOWN, this, this.mouseDown);//注册鼠标事件 Laya.stage.on(Laya.Event.MOUSE_UP, this, this.mouseUp); } //创建地图 private createMap() { //创建地图对象 this.tiledMap = new TiledMap(); this.mX = this.mY = 0; //创建地图,适当的时候调用destory...
来源: Laya2.0_示例 发布时间: 20250223
...("click", this, this.onBoyClick); Laya.stage.addChild(boy2); //侦听点击事件,输出坐标信息 Laya.stage.on("click", this, this.onClick); Laya.stage.on("resize", this, this.onResize); } onBoyClick(e) { //点击后小人会放大缩小 let boy = e.target; if (boy.scaleX === 1) { boy.scale(1....
来源: Laya2.0_示例 发布时间: 20250223