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

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

61. 粒子-粒子演示2 [ 77%]

...ction onAssetsLoaded(settings) { sp = new Particle2D(settings); sp.emitter.start(); sp.play(); Laya.stage.addChild(sp); sp.x = Laya.stage.width / 2; sp.y = Laya.stage.height / 2; } })();module laya { import Stage = Laya.Stage; import Loader = Laya.Loader; import Particle2D = Laya.Particle2D; import ...

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

62. 粒子-粒子演示3 [ 77%]

...ction onAssetsLoaded(settings) { sp = new Particle2D(settings); sp.emitter.start(); sp.play(); Laya.stage.addChild(sp); sp.x = Laya.stage.width / 2; sp.y = Laya.stage.height / 2; } })();module laya { import Stage = Laya.Stage; import Loader = Laya.Loader; import Particle2D = Laya.Particle2D; import ...

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

63. 构建andorid工程后,在AndoridStuido中模拟器调试运行出现如下问题,然后打不开APP [ 77%]

...ation: com.mygame.Shjy3Android/demo.MainActivity. DEVICE SHELL COMMAND: am start -D -n "com.mygame.Shjy3Android/demo.MainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER WARNING: linker: libdvm.so has text relocations. This is wasting memory and is a security risk. Please ...

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

64. 寻路系统(JavaScript-3D基础(JS)-LayaAir3D之高级应用) [ 77%]

...is.pointCount].x, this.path[this.curPathIndex++ % this.pointCount].z, this.startPoint); this.getGridIndex(this.path[this.nextPathIndex % this.pointCount].x,this.path[this.nextPathIndex++ % this.pointCount].z, this.endPoint); //开始于结束点数据 var start = this.graph.grid[this.startPoint.x][t...

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

65. 粒子-粒子演示1 [ 76%]

...ings); Laya.stage.addChild(partIns); // 开始发射粒子 partIns.emitter.start(); // 播放 partIns.play(); partIns.x = Laya.stage.width / 2; partIns.y = Laya.stage.height / 2; } } new Particle_T1();module laya { import Stage = Laya.Stage; import Loader = Laya.Loader; import Particle2D = Laya.Part...

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

66. 粒子-粒子演示2 [ 76%]

...ings); Laya.stage.addChild(partIns); // 开始发射粒子 partIns.emitter.start(); // 播放 partIns.play(); partIns.x = Laya.stage.width / 2; partIns.y = Laya.stage.height / 2; } } new Particle_T2();module laya { import Stage = Laya.Stage; import Loader = Laya.Loader; import Particle2D = Laya.Part...

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

67. 粒子-粒子演示3 [ 76%]

...ings); Laya.stage.addChild(partIns); // 开始发射粒子 partIns.emitter.start(); // 播放 partIns.play(); partIns.x = Laya.stage.width / 2; partIns.y = Laya.stage.height / 2; } } new Particle_T3();module laya { import Stage = Laya.Stage; import Loader = Laya.Loader; import Particle2D = Laya.Part...

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

68. 寻路系统(TypeScript-3D基础(TS)-LayaAir3D之高级应用) [ 76%]

...is.pointCount].x, this.path[this.curPathIndex++ % this.pointCount].z, this.startPoint); this.getGridIndex(this.path[this.nextPathIndex % this.pointCount].x,this.path[this.nextPathIndex++ % this.pointCount].z, this.endPoint); //开始于结束点数据 var start = this.graph.grid[this.startPoint.x][t...

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

69. 寻路系统(ActionScript-3D基础(AS3)-LayaAir3D之高级应用) [ 76%]

...ex(path[curPathIndex % pointCount].x, path[curPathIndex++ % pointCount].z, startPoint); getGridIndex(path[nextPathIndex % pointCount].x,path[nextPathIndex++ % pointCount].z, endPoint); //开始于结束点数据 var start:Object = graph.grid[startPoint.x][startPoint.z]; var end:Object = graph.grid[e...

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

70. skeleton动画怎么实现gotoAndStop和gotoAndPlay, [ 76%]

...怎么实现gotoAndStop和gotoAndPlay, 如题, 我想实现, 1.playTo(start,end)                                      将动画从start开始播放到end后暂停 2.gotoAndStop(frame或timer)                    将动画定位到指定帧或时间 3.gogoAndPlay(fram...

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