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

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

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

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

142. 自动旋转后残影 [ 42%]

...oveHandler); } protected function _moveHandler():void{ _tip.x = Laya.stage.mouseX; _tip.y = Laya.stage.mouseY; } } } teddywu • 2019-05-22 13:21 Laya.stage.scaleMode = Stage.SCALE_FULL; //加了这个

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

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

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

144. 射线检测-射线检测 [ 42%]

... checkHit() { //从屏幕空间生成射线 point.elements[0] = Laya.stage.mouseX; point.elements[1] = Laya.stage.mouseY; camera.viewportPointToRay(point, ray); //变化小飞龙的缩放和位置,并更新其模拟碰撞器 if (_scale >= 1) _scaleIndex = -1; else if (_scale ,最大检测距离30...

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

145. CPU优化方式(ActionScript-2D进阶篇(AS3)-性能优化) [ 41%]

....stage.on(Event.MOUSE_MOVE, this, function() {     sp.pos(Laya.stage.mouseX, Laya.stage.mouseY); }); ``` ​ ![图片1.png](img/1.png) ​ (图1) ​ 此时FPS显示30,并且在鼠标移动时,可以感觉到圆球位置的更新不连贯。设置Stage.frameRate为Stage.FRAME_MOUSE:...

来源: Laya2.0_文档 发布时间: 20210715

146. CPU优化方式(JavaScript-2D进阶篇(JS)-性能优化) [ 41%]

...ld(sp); Laya.stage.on(Event.MOUSE_MOVE,this,function() { sp.pos(Laya.stage.mouseX,Laya.stage.mouseY); }); ``` ![图片1.png](https://official.layabox.com/laya_data/Chinese/LayaAir_AS3/2D/advanced/PerformanceOptimization/CPU/img/1.png) (图1) 此时FPS显示30,并且在鼠标移动时,可以...

来源: Laya2.0_文档 发布时间: 20210715

147. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 39%]

...); Laya.stage.on(Laya.Event.MOUSE_MOVE,this,function() { sp.pos(Laya.stage.mouseX,Laya.stage.mouseY); }); ``` ![图片1.png](https://official.layabox.com/laya_data/Chinese/LayaAir_AS3/2D/advanced/PerformanceOptimization/CPU/img/1.png) (图1) 此时FPS显示30,并且在鼠标移动时,可以...

来源: Laya2.0_文档 发布时间: 20210714

148. UI-RefreshList [ 37%]

...并保存 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

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

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

150. 有关Laya3D碰撞检测疑问 [ 34%]

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