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

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

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

...//随机生成半径大小 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

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

...生成半径大小 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

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

...生成半径大小 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

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

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

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

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

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

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

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

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

7. 基于Cannon.js的物理系统(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 68%]

...pe 碰撞形状 ​CannonBoxColliderShape盒型,CannonSphereColliderShape球型以及CannonCompoundColliderShape复合形状。 - 3.碰撞事件 ​onCollisionEnter、onCollisionStay、onCollisionExit、onTriggerEnter、onTriggerStay、onTriggerExit。 - 4.物理属性(通过刚体进行设置) ...

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

8. 基于Cannon.js的物理系统(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 67%]

...pe 碰撞形状 ​CannonBoxColliderShape盒型,CannonSphereColliderShape球型以及CannonCompoundColliderShape复合形状。 - 3.碰撞事件 ​onCollisionEnter、onCollisionStay、onCollisionExit、onTriggerEnter、onTriggerStay、onTriggerExit。 - 4.物理属性(通过刚体进行设置) ...

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