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

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

81. 多种碰撞器形状(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 34%]

...sh.createCone(raidius, height)); scene.addChild(cone); //设置材质 cone.meshRenderer.material = mat4; //设置位置 cone.transform.position = new Vector3(Math.random() * 4 - 2, 10, Math.random() * 4 - 2); var rigidBody:Rigidbody3D = cone.addComponent(Rigidbody3D); //创建球型碰撞器 var con...

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

82. 多种碰撞器形状(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 33%]

...sh.createCone(raidius, height)); scene.addChild(cone); //设置材质 cone.meshRenderer.material = mat4; //设置位置 cone.transform.position = new Laya.Vector3(Math.random() * 4 - 2, 10, Math.random() * 4 - 2); var rigidBody:Laya.Rigidbody3D = cone.addComponent(Laya.Rigidbody3D); //创建球型...

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

83. Unity插件使用说明(TypeScript-3D基础(TS)-LayaAir3D之3D场景可视化编辑) [ 24%]

...(); earthMat.albedoTexture = Texture; earthMat.albedoIntensity = 1; earth1.meshRenderer.material = earthMat; })); ``` ## 本文赞赏 如果您觉得本文对您有帮助,欢迎扫码赞赏作者,您的激励是我们写出更多优质文档的动力。 ![wechatPay](../../../../wechatPay.jpg)

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

84. 实体组件系统 · LayaAir3.0文档 · LAYABOX [ 21%]

...oid { //碰撞开始后,物体改变颜色 (this.owner.getComponent(Laya.MeshRenderer).material as Laya.BlinnPhongMaterial).albedoColor = new Laya.Color(0.0, 1.0, 0.0, 1.0);//绿色 } /** * 发生持续物理碰撞时的3D物理碰撞器事件(不适用2D),也就是碰撞生命周期内的...

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

85. LayaAir3D UnityPlugin 使用须知-版本更新-问题解答(最新版本:1.7.16) [ 18%]

...节点:         1. Transform       2. MeshFilter         3. MeshRenderer      4. SkinnedMeshRenderer          5. Animation       6. Animator (新)    7. Terrain                  8. ParticleSystem(使用须知)                  关于导出工具的使用...

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

86. 一篇上手LayaAir的3D物理引擎(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 11%]

...eMesh.createBox(0.75, 0.5, 0.5))) as Laya.MeshSprite3D; //设置材质 box.meshRenderer.material = this.mat1; //设置空间位置 let transform = box.transform; let pos = transform.position; pos.setValue(1, 6, 0); transform.position = pos; //创建刚体碰撞器 let _rigidBody = box.addComponent(L...

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