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

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

1. 物理形状扫描检测(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 100%]

...d&group=Physics3D&name=PhysicsWorld_RayShapeCast)) ```typescript //创建球型碰撞器 var sphereCollider = new Laya.SphereColliderShape(0.5); //使用球型碰撞器进行形状检测 if (this.castAll) { //进行形状检测,检测所有碰撞的物体 this.scene.physicsSimulation.shapeCastAll(...

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

2. 物理形状扫描检测(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 99%]

...d&group=Physics3D&name=PhysicsWorld_RayShapeCast)) ```typescript //创建球型碰撞器 var sphereCollider:Laya.SphereColliderShape = new Laya.SphereColliderShape(0.5); //使用球型碰撞器进行形状检测 if (this.castAll) { //进行形状检测,检测所有碰撞的物体 this.scene.physic...

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

3. 物理形状扫描检测(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 99%]

...d&group=Physics3D&name=PhysicsWorld_RayShapeCast)) ```typescript //创建球型碰撞器 var sphereCollider:SphereColliderShape = new SphereColliderShape(0.5); //使用球型碰撞器进行形状检测 if (castAll) { //进行形状检测,检测所有碰撞的物体 scene.physicsSimulation.shapeCas...

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

4. 多种碰撞器形状(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 98%]

...//随机生成半径大小 var radius = Math.random() * 0.2 + 0.2; //创建球型MeshSprite3D var sphere = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createSphere(radius))); //添加刚体碰撞器 var rigidBody = sphere.addComponent(Laya.Rigidbody3D); //创建球型碰撞器 var sphere...

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

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

...生成半径大小 var radius:Number = Math.random() * 0.2 + 0.2; //创建球型MeshSprite3D var sphere:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createSphere(radius))) as MeshSprite3D; //添加刚体碰撞器 var rigidBody:Rigidbody3D = sphere.addComponent(Rigidbody3D); //创建...

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

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

...生成半径大小 var radius:number = Math.random() * 0.2 + 0.2; //创建球型MeshSprite3D var sphere = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createSphere(radius))) as Laya.MeshSprite3D; //添加刚体碰撞器 var rigidBody = sphere.addComponent(Laya.Rigidbody3D); //创建球型...

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

7. 材质的功能介绍(JavaScript-3D基础(JS)-LayaAir3D之Material材质) [ 81%]

...eDimen/scene/ChangeMaterialDemo/Conventional/scene.ls")); //从场景获取球型精灵 this.sphere = scene.getChildByName("Sphere"); //获取球型精灵自带的BlinnPhong材质 billinMaterial = this.sphere.meshRenderer.material; ``` > 拿到材质之后,我们可以修改材质或者将这个...

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

8. 材质的功能介绍(ActionScript-3D基础(AS3)-LayaAir3D之Material材质) [ 79%]

...e/ChangeMaterialDemo/Conventional/scene.ls")) as Scene3D; //从场景获取球型精灵 sphere = scene.getChildByName("Sphere") as MeshSprite3D; //获取球型精灵自带的BlinnPhong材质 billinMaterial = sphere.meshRenderer.material; ``` > 拿到材质之后,我们可以修改材质或者将...

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

9. 材质的功能介绍(TypeScript-3D基础(TS)-LayaAir3D之Material材质) [ 79%]

...ngeMaterialDemo/Conventional/scene.ls")) as Laya.Scene3D; //从场景获取球型精灵 this.sphere = scene.getChildByName("Sphere") as Laya.MeshSprite3D; //获取球型精灵自带的BlinnPhong材质 this.billinMaterial = this.sphere.meshRenderer.material; ``` > 拿到材质之后,我们可以修...

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

10. 模型的功能介绍(JavaScript-3D基础(JS)-LayaAir3D之模型和网格) [ 64%]

..."res/threeDimen/scene/ChangeMaterialDemo/Conventional/scene.ls")); //获取球型精灵 var sphere = scene.getChildByName("Sphere"); //获取精灵的mesh var sphereMesh = sphere.meshFilter.sharedMesh; //此时已经拿到了场景中的球体的网格 ``` #### 修改子对象模型网格 获取子...

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