大约有 328 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)
Laya_社区(101) Laya3.0_api(63) Laya2.0_api(58) laya_api(54) Laya2.0_文档(24) Laya2.0_示例(11) Laya_示例(11) Laya3.0_文档(6)
...t pointVec2 = new Laya.Vector2( ) pointVec2.x = Laya.MouseManager.instance.mouseX; pointVec2.y = Laya.MouseManager.instance.mouseY; this.sceneCamera.viewportPointToRay(pointVec2, this.originRay) // 摄像机发出射线检测的碰撞体 let cameraHitResult = new Laya.HitResult( ) this.mainScene.phy...
来源: Laya_社区 发布时间: 20200617
...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
...",this.camera.) this.camera.viewportPointToRay(new Laya.Vector2(Laya.stage.mouseX,Laya.stage.mouseY),this.ray) if(this.physics.rayCast(this.ray,this.hitInfo)){ console.log("检测到了") } } 2019-06-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: ...
来源: Laya_社区 发布时间: 20190621
...ouseUP():void{ var point:Point = sprite.globalToLocal(new Point(Laya.stage.mouseX,Laya.stage.mouseY)); var deltaX:int = point.x-500; var deltaY:int = point.x-500; //计算旋转角度 var angle:Number = Math.atan2(deltaX,deltaY)*180/Math.PI; //在鼠标的位置生成一个圆来测试本地坐标 f...
来源: Laya_社区 发布时间: 20190515
... 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
...测. onStageMouseDown(): void { this._rayPt.x = Laya.MouseManager.instance.mouseX; this._rayPt.y = Laya.MouseManager.instance.mouseY; GameManager.instance.mainCamera.viewportPointToRay(this._rayPt, this._ray); let scene = this.owner.scene as Laya.Scene3D; scene.physicsSimulation.rayCast(this._ray, t...
来源: Laya_社区 发布时间: 20190319
...从屏幕空间生成射线 point.elements[0] = Laya.MouseManager.instance.mouseX; point.elements[1] = Laya.MouseManager.instance.mouseY; camera.viewportPointToRay(point, ray); //射线检测获取所有检测碰撞到的物体 Laya.Physics.rayCastAll(ray, _outHitAllInfo, 30, 0); } (function loadUI(...
来源: Laya_示例 发布时间: 20241119
... _this.check(_this._stage, _this.mouseX, _this.mouseY, _this.onMouseMove); } _this.checkMouseOut(); break; 以上问题电脑浏览器中都不存在...
来源: Laya_社区 发布时间: 20170510
...CreateFun("bullet", this.bullet.create, this.bullet); flyer.pos(Laya.stage.mouseX, Laya.stage.mouseY); this._gameBox.addChild(flyer); this._chains.points="35,35,80,80"; //****新增代码*****,需增加private _chain; } /**开始游戏,通过激活本脚本方式开始游戏*/ startGame()...
来源: Laya_社区 发布时间: 20181130
...地图视口 */ 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