大约有 300 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0040 秒)
Laya_社区(79) Laya3.0_api(62) Laya2.0_api(58) laya_api(54) Laya2.0_文档(19) Laya2.0_示例(11) Laya_示例(11) Laya3.0_文档(6)
...e(6393,0,0); gsp.relativeX = TiledMapManager.Instance.OffSetX + Laya.stage.mouseX; gsp.relativeY = TiledMapManager.Instance.OffSetY + Laya.stage.mouseY; gsp.initData(TiledMapManager.Instance.TiledMap); gsp.updatePos(); mapLayer._childs[0].addChild(gsp); 附件 : --> bug.png 2018-08-10 添加评论 ...
来源: Laya_社区 发布时间: 20180810
...nction moveHandler():void { interactionArea.graphics.drawCircle(Laya.stage.mouseX, Laya.stage.mouseY, 30, "#ff0000"); } private function upHandler():void { trace("KouTu.upHandler()"); // box.stopDrag(); gameContainer.off(Event.MOUSE_MOVE, this, moveHandler); } private function downHandler():void { t...
来源: Laya_社区 发布时间: 20170315
... partIns.play(); partIns.x = Laya.stage.mouseX; partIns.y = Laya.stage.mouseY; }), null, Laya.Loader.JSON); }) 错误信息:TypeError: Failed to execute 'attachShader' on 'WebGL2RenderingC...
来源: Laya_社区 发布时间: 20190808
.../ protected _tempVector3: Laya.Vector3 = new Laya.Vector3(); protected lastMouseX: number = 0; protected lastMouseY: number = 0; protected yawPitchRoll: Laya.Vector3 = new Laya.Vector3(); protected resultRotation: Laya.Quaternion = new Laya.Quaternion(); protected tempRotationZ: Laya.Quaternion = ne...
来源: Laya3.0_文档 发布时间: 20241014
...(state); //从屏幕空间生成射线 this.point.elements[0] = Laya.stage.mouseX; this.point.elements[1] = Laya.stage.mouseY; this.camera.viewportPointToRay(this.point, this.ray); //11111111111111就是下面这句报错 Laya.Physics.rayCast(this.ray, this._outHitInfo, Number.MAX_VALUE, 10); if (th...
来源: Laya_社区 发布时间: 20170323
...oveHandler); } protected function _moveHandler():void{ _tip.x = Laya.stage.mouseX; _tip.y = Laya.stage.mouseY; } } } teddywu • 2019-05-22 13:21 Laya.stage.scaleMode = Stage.SCALE_FULL; //加了这个
来源: Laya_社区 发布时间: 20190520
...地图视口 */ function mouseMove(){ var moveX = this.MapX - (Laya.stage.mouseX - this.mLastMouseX); var moveY = this.MapY - (Laya.stage.mouseY - this.mLastMouseY); //移动地图视 this.tMap.moveViewPort(moveX,moveY); } function mouseUp(){ this.MapX = this.MapX - (Laya.stage.mouseX - this.mLastMo...
来源: Laya2.0_文档 发布时间: 20210715
...存在哪儿,如何管理编辑? 点击按钮有没有不记录stage.mouseX的办法 关于缓动函数from的一些问题记录 记录一下oppo小游戏踩的坑 攻略贴:打包apk完整流程记录(单机版) 聊天室记录保存 关于在LayaAir开发中遇到的问题【趟坑记录...
来源: Laya_社区 发布时间: 20180908
...number = 0; private MapX:number = 0; private MapY:number = 0; private mLastMouseX:number; private mLastMouseY:number; constructor() { //初始化舞台 Laya.init(Laya.Browser.width,Laya.Browser.height,Laya.WebGL); //创建TiledMap实例 this.tMap = new Laya.TiledMap(); //创建Rectangle实例,视...
来源: Laya2.0_文档 发布时间: 20210715
....stage.on(Event.MOUSE_MOVE, this, function() { sp.pos(Laya.stage.mouseX, Laya.stage.mouseY); }); ``` ![图片1.png](img/1.png) (图1) 此时FPS显示30,并且在鼠标移动时,可以感觉到圆球位置的更新不连贯。设置Stage.frameRate为Stage.FRAME_MOUSE:...
来源: Laya2.0_文档 发布时间: 20210715