大约有 12 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0037 秒)
...线检测的问题 大概意思 就是给模型外部套了一个很大的球型碰撞 作触发检测用,没有刚体,但模型本身是有刚体和多个碰撞盒的,射线检测的时候如何不检测到外部的那个球型碰撞而能检测到里面碰撞,现在弄个3DFPS都感觉辣...
来源: Laya_社区 发布时间: 20200713
...//随机生成半径大小 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
...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
...生成半径大小 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
...碰撞器Collider,LayaAir3D现支持的碰撞器有三种,分别是, 球型碰撞器SphereCollider,盒型碰撞器BoxCollider,网格碰撞器MeshCollider。从碰撞检测精确度和消耗性能从低到高依次为SphereCollider-BoxCollider-MeshCollider;可以根据游戏中开发需...
来源: Laya_社区 发布时间: 20170324
...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