大约有 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...
来源: Laya_示例 发布时间: 20250223
...y2.on("click", this, onBoyClick); Laya.stage.addChild(boy2); //侦听点击事件,输出坐标信息 Laya.stage.on("click", this, onClick); Laya.stage.on("resize", this, onResize); })(); function onBoyClick(e) { //点击后小人会放大缩小 var boy = e.target; if (boy.scaleX === 1) { boy.scale...
来源: Laya_示例 发布时间: 20250223