大约有 39 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0028 秒)
...apeInheritanceColliderShape ObjectImplements laya.d3.core.ICloneSubclasses BoxColliderShape, CapsuleColliderShape, CompoundColliderShape, ConeColliderShape, CylinderColliderShape, MeshColliderShape, SphereColliderShape, StaticPlaneColliderShape ColliderShape 类用于创建形状碰撞器的父类...
来源: Laya2.0_api 发布时间: 20190513
...下IDE试下,碰撞体胶囊还是显示不正常是由于您的地板的boxColliderShape的高度为1,您设置y轴偏移为-0.5,就可以了,场景中的box位置正确是因为开启了运动学刚体(Kinematic)导致的,您可以参照下图试下: 最终运行如下: 2024-03-11...
来源: Laya_社区 发布时间: 20240304
....PhysicsCollider); //创建盒子形状碰撞器 var planeShape = new Laya.BoxColliderShape(10, 0, 10); //物理碰撞体设置形状 planeStaticCollider.colliderShape = planeShape; //物理碰撞体设置摩擦力 planeStaticCollider.friction = 2; //物理碰撞体设置弹力 planeStaticCollider.r...
来源: Laya2.0_文档 发布时间: 20210714
...才能看见它的位置,以便调试位置? var boxShape = new Laya.BoxColliderShape(2, 2, 2); 有没有什么方法可以设置 碰撞体的颜色? 附件 : --> 2019-08-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提...
来源: Laya_社区 发布时间: 20190805
...ider) as Laya.PhysicsCollider; let oldShape = phyCol.colliderShape as Laya.BoxColliderShape; phyCol.colliderShape = oldShape;//不执行这一步这个collider还是歪的,必须重新赋值一下 最后附上fbx源文件 附件 : --> XCD@1DJ_zhazhiji_NOani_0.FBX_.zip 2019-03-20 添加评论 免...
来源: Laya_社区 发布时间: 20190320
...检测同一MeshColliderShape返回两个结果 如下图,白色方体是BoxColliderShape,检测正常,返回一个结果值 黄色方体是MeshColliderShape,检测会返回两个结果值,观察是方体的前后两个面都被检测到了,而且法线方向居然是一样的! 附...
来源: Laya_社区 发布时间: 20200810
...Laya.Vector3(0, -9.8, 0); //创建盒子形状碰撞器 let boxShape: Laya.BoxColliderShape = new Laya.BoxColliderShape(1, 1, 1); //设置盒子的碰撞形状 boxRigidbody3D.colliderShape = boxShape; 运行物理组件需要在项目设置面板中勾选相应的引擎模块。 3.5 添加材质和...
来源: Laya3.0_文档 发布时间: 20241014
...r = this.box.addComponent(Laya.PhysicsCollider); var planeShape = new Laya.BoxColliderShape(10, 0, 10); planeStaticCollider.colliderShape = planeShape; 古 • 2019-01-24 17:58 @182*****524:明白了,多谢
来源: Laya_社区 发布时间: 20190118
...象类。 Hierarchy ColliderShape CompoundColliderShape MeshColliderShape BoxColliderShape CapsuleColliderShape ConeColliderShape CylinderColliderShape SphereColliderShape StaticPlaneColliderShape HeightfieldTerrainShape Implements IClone Index Constructors constructor Properties needsCustomCollisio...
来源: Laya3.0_api 发布时间: 20231115
...PhysicsCollider); // 添加collidershape floorCollicar.colliderShape = new BoxColliderShape(10,0,2000); //加载精灵 Sprite3D.load("LayaScene_cu_demo/Conventional/Cu.lh", Handler.create(null, function(sp:Sprite3D):void { cu = scene.addChild(sp) as Sprite3D; cu.transform.rotate(new Vector3(0, -...
来源: Laya_社区 发布时间: 20190417