• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 328 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0038 秒)

111. PixelLineSprite3D 绘制线段问题 [ 51%]

...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

112. 关于新手引导 [ 51%]

...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

113. 我竟然被射线检测这个小功能给难了一天了 [ 51%]

...",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

114. 请问这是原因? [ 51%]

...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

115. 新版版2d粒子问题?同样的代码,LayaAir IDE 2.1.0版本正常,LayaAir IDE 2.2.0beta2版本报错 [ 51%]

...  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

116. Camera.viewportToRay中origin与direction相等问题 [ 51%]

...测. 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

117. 射线检测-选取物体 [ 50%]

...从屏幕空间生成射线 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

118. 打包APK运行,drag拖动出现问题;color="#0"程序直接崩溃 [ 50%]

...                         _this.check(_this._stage, _this.mouseX, _this.mouseY, _this.onMouseMove);                     }                     _this.checkMouseOut();                     break;  以上问题电脑浏览器中都不存在...

来源: Laya_社区 发布时间: 20170510

119. bug,ChainCollider.points第二次设置,会报错! [ 50%]

...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

120. 用LayaAir引擎解析Tiled Map地图(JavaScript-2D进阶篇(JS)-扩展模块) [ 50%]

...地图视口 */ 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