大约有 8 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0026 秒)
...//随机生成半径大小 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
...生成半径大小 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
...生成半径大小 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
...d&group=Physics3D&name=PhysicsWorld_RayShapeCast)) ```typescript //创建球型碰撞器 var sphereCollider = new Laya.SphereColliderShape(0.5); //使用球型碰撞器进行形状检测 if (this.castAll) { //进行形状检测,检测所有碰撞的物体 this.scene.physicsSimulation.shapeCastAll(...
来源: Laya2.0_文档 发布时间: 20210715
...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
...d&group=Physics3D&name=PhysicsWorld_RayShapeCast)) ```typescript //创建球型碰撞器 var sphereCollider:SphereColliderShape = new SphereColliderShape(0.5); //使用球型碰撞器进行形状检测 if (castAll) { //进行形状检测,检测所有碰撞的物体 scene.physicsSimulation.shapeCas...
来源: Laya2.0_文档 发布时间: 20210715
...pe 碰撞形状 CannonBoxColliderShape盒型,CannonSphereColliderShape球型以及CannonCompoundColliderShape复合形状。 - 3.碰撞事件 onCollisionEnter、onCollisionStay、onCollisionExit、onTriggerEnter、onTriggerStay、onTriggerExit。 - 4.物理属性(通过刚体进行设置) ...
来源: Laya2.0_文档 发布时间: 20210715
...pe 碰撞形状 CannonBoxColliderShape盒型,CannonSphereColliderShape球型以及CannonCompoundColliderShape复合形状。 - 3.碰撞事件 onCollisionEnter、onCollisionStay、onCollisionExit、onTriggerEnter、onTriggerStay、onTriggerExit。 - 4.物理属性(通过刚体进行设置) ...
来源: Laya2.0_文档 发布时间: 20210714