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

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

111. 发布rpk摄像机裁剪坐标与html中坐标不一致 [ 56%]

... Laya.Point = Laya.Point.create();  pos.x = Laya.MouseManager.instance.mouseX; 鼠标的位置转成了图片下的本地坐标,我所使用的代码是  selfNode.globalToLocal(pos);// 把stage的全局坐标转换为本地坐标。 我已经发布了oppo小游戏可以直接进行调试  ...

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

112. 射线一直无法获取物体 [ 56%]

...间生成射线         point.elements[0] = Laya.MouseManager.instance.mouseX;         point.elements[1] = Laya.MouseManager.instance.mouseY;         camera.viewportPointToRay(point, ray);         //射线检测获取所有检测碰撞到的物体         Laya.Physics.rayCast(ray...

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

113. UI-RefreshList [ 56%]

...并保存 this.moveLastPos = e.target.globalToLocal(new Point(Laya.stage.mouseX, Laya.stage.mouseY)); //鼠标按下的时候进行移动侦听 e.target.on(Event.MOUSE_MOVE, this, this.onItemBoxMouseMove, [e.target, index]); } } if (e.type == Event.MOUSE_UP) { this.mouseDown = false; this.itemOnMous...

来源: Laya2.0_示例 发布时间: 20241119

114. 为什么会出现报错 ani not found:ufo1_down [ 55%]

...ove(){ // 始终保持主角和鼠标位置一致 this.hero.pos(Laya.stage.mouseX,Laya.stage.mouseY); } function createEnemy(num){ for(var i = 0; i < num; i++) { // 随机出现敌人 var r = Math.random(); // 根据随机数,随机敌人 var type = r<0.7?0:r<0.95?1:2; // 创建敌人 // ...

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

115. 关于大量绘制 draw的性能优化问题 [ 55%]

...e); function  mousemove(e) {     drawLayer.graphics.drawCircle(e.target.mouseX,e.target.mouseY,20,"#ffffff")     drawLayer.cacheAsBitmap; }   我的思路是每一次move都把对应的圆形区域绘制到一个容器上,这样一来drawcall就不会一直增加了。     但是在laya中...

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

116. 3D中摄像机绕物体旋转该如何实现? [ 55%]

..., this.tempV, this.tempV1) this.transform.position = this.tempV1; this.lastMouseX = Laya.stage.mouseX; this.lastMouseY = Laya.stage.mouseY; } //记录上一次手机触摸位置判断用户是在左放大还是缩小手势 private oldPosition1: Vector3 = new Vector3(); private oldPosition2: Vector3 ...

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

117. 官方案例里摄像机绕物体旋转脚本的问题 [ 55%]

..., this.tempV, this.tempV1) this.transform.position = this.tempV1; this.lastMouseX = Laya.stage.mouseX; this.lastMouseY = Laya.stage.mouseY; } //记录上一次手机触摸位置判断用户是在左放大还是缩小手势 private oldPosition1: Vector3 = new Vector3(); private oldPosition2: Vector3 ...

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

118. 请问如何获取触屏上两个或者更多位置的坐标 [ 55%]

...件才能获取坐标 但是如果我一直按着不动就无法触发了 mouseXmouseY只能获取一个点的坐标 2017-12-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 wudi199553 赞同来自: private onMou...

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

119. 为什么会出现报错 ani not found:ufo1_down [ 54%]

...ove(){ // 始终保持主角和鼠标位置一致 this.hero.pos(Laya.stage.mouseX,Laya.stage.mouseY); } function createEnemy(num){ for(var i = 0; i < num; i++) { // 随机出现敌人 var r = Math.random(); // 根据随机数,随机敌人 var type = r<0.7?0:r<0.95?1:2; // 创建敌人 // ...

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

120. 有关Laya3D碰撞检测疑问 [ 52%]

...幕空间生成射线 this.point.elements[0] = Laya.MouseManager.instance.mouseX; this.point.elements[1] = Laya.MouseManager.instance.mouseY; this.camera.viewportPointToRay(this.point, this.ray);  //射线检测获取所有检测碰撞到的物体 Laya.Physics.rayCastAll(this.ray, this._outHitAllIn...

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