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

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

11. 请问2.0射线到底如何使用呢? [ 76%]

...类,但下面这么用一直没有东西,求指点 this.mousePos=new Vector2(MouseManager.instance.mouseX, MouseManager.instance.mouseY); camera.viewportPointToRay(this.mousePos,ray); this.ps.rayCast(ray,this.rayCastHit,500, 0); 2018-12-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

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

12. 射线检测有偏差 [ 74%]

...坐标,为射线检测偏差使用 public changeToClientWorld(input:Laya.Vector2):Laya.Vector2 { let ratioX = (input.x / Laya.stage.width); let ratioY = (input.y / Laya.stage.height); let clientWidth = Laya.stage.clientScaleX * Laya.stage.width let clientHeight = Laya.stage.clientScaleY * Laya.sta...

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

13. 加载.lh文件 运行后黑屏 无法显示 [ 72%]

...;     private rotation:Laya.Vector3;     private lastPosition:Laya.Vector2;     private distance:number = 0.0;     private disVector1:Laya.Vector2;     private disVector2:Laya.Vector2;     private isTwoTouch:boolean;     private first:boolean;     private twoFirst:boo...

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

14. (实现手指控制模型的缩放旋转)触控可以识别 但是导入的模型没有根据触控反应 [ 72%]

...;     private rotation:Laya.Vector3;     private lastPosition:Laya.Vector2;     private distance:number = 0.0;     private disVector1:Laya.Vector2;     private disVector2:Laya.Vector2;     private isTwoTouch:boolean;     private first:boolean;     private twoFirst:boo...

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

15. 射线检测-放置物体 [ 71%]

...ew Laya.Vector3(0, 0, 0), new Laya.Vector3(0, 0, 0)); var point = new Laya.Vector2(); var _outHitInfo = new Laya.RaycastHit(); function checkHit() { //从屏幕空间生成射线 point.elements[0] = Laya.MouseManager.instance.mouseX; point.elements[1] = Laya.MouseManager.instance.mouseY; camera.view...

来源: Laya_示例 发布时间: 20241118

16. 射线检测-点击行走 [ 71%]

...ew Laya.Vector3(0, 0, 0), new Laya.Vector3(0, 0, 0)); var point = new Laya.Vector2(); var _position = new Laya.Vector3(0, 0.25, 0); var _quaternion = new Laya.Quaternion(); var _outHitInfo = new Laya.RaycastHit(); function checkHit() { box.transform.position = _position; box.transform.rotation = _qu...

来源: Laya_示例 发布时间: 20241118

17. 求救,用了Stage.SCALE_SHOWALL之后,包围盒碰撞检测偏移 [ 68%]

...下,发现应该是             camera.viewportPointToRay(new Vector2(Laya.stage.mouseX,Laya.stage.mouseY),ray); 出了问题,用Stage.SCALE_SHOWALL前后,生成的射线位置不一样。 2018-02-27 0 1 分享 微博 QZONE 微信 c416288806 赞同来自: 。。。。?Laya还在放...

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

18. Laya多点触控是有开关吗 为什么多点触控没有任何反应 [ 68%]

...     this.camera = null;         this.lastPosition = new Laya.Vector2(0, 0);         this.distance = 0.0;         this.disVector1 = new Laya.Vector2(0, 0);         this.disVector2 = new Laya.Vector2(0, 0);         this.isTwoTouch = false;         ...

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

19. 求问shader中的attribute变量怎么动态修改 [ 65%]

...; var transformUV:TransformUV = new TransformUV(); transformUV.offset= new Vector2();   2017-06-09 3 3 分享 微博 QZONE 微信 cuixueying 赞同来自: 我们先看下,晚些回复! 2017-06-09 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 该问题目前已经被锁...

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

20. 3D寻路 · LayaAir3.0文档 · LAYABOX [ 63%]

...整数的网格索引 */ private getGridIndex(x: number, z: number, out: Vector2) { var minX = this.terrainSprite.minX; var minZ = this.terrainSprite.minZ; var cellX = this.terrainSprite.width / this.aStarMap.width; var cellZ = this.terrainSprite.depth / this.aStarMap.height; var gridX = Math.floor(...

来源: Laya3.0_文档 发布时间: 20230303