大约有 37 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0032 秒)
...类,但下面这么用一直没有东西,求指点 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
...坐标,为射线检测偏差使用 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
...; 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
...; 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
...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
...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
...下,发现应该是 camera.viewportPointToRay(new Vector2(Laya.stage.mouseX,Laya.stage.mouseY),ray); 出了问题,用Stage.SCALE_SHOWALL前后,生成的射线位置不一样。 2018-02-27 0 1 分享 微博 QZONE 微信 c416288806 赞同来自: 。。。。?Laya还在放...
来源: Laya_社区 发布时间: 20180227
... 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
...; 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
...整数的网格索引 */ 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