大约有 19 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0024 秒)
...线检测的问题 大概意思 就是给模型外部套了一个很大的球型碰撞 作触发检测用,没有刚体,但模型本身是有刚体和多个碰撞盒的,射线检测的时候如何不检测到外部的那个球型碰撞而能检测到里面碰撞,现在弄个3DFPS都感觉辣...
来源: Laya_社区 发布时间: 20200713
...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 = 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
...eDimen/scene/ChangeMaterialDemo/Conventional/scene.ls")); //从场景获取球型精灵 this.sphere = scene.getChildByName("Sphere"); //获取球型精灵自带的BlinnPhong材质 billinMaterial = this.sphere.meshRenderer.material; ``` > 拿到材质之后,我们可以修改材质或者将这个...
来源: Laya2.0_文档 发布时间: 20210715
...e/ChangeMaterialDemo/Conventional/scene.ls")) as Scene3D; //从场景获取球型精灵 sphere = scene.getChildByName("Sphere") as MeshSprite3D; //获取球型精灵自带的BlinnPhong材质 billinMaterial = sphere.meshRenderer.material; ``` > 拿到材质之后,我们可以修改材质或者将...
来源: Laya2.0_文档 发布时间: 20210715
...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