今天对一个书的模型加Rigidbody, MeshiCollider用的是mesh非UNITY自带的 出现 Non-convex MeshCollider with non-kinematic Rigidbody is no longer supported in Unity 5. 并且碰撞不起作用 在面板中 勾选了convex就解决了 去官网一查 Convex If enabled, this Mesh Collider will collide with other Mesh Collide…
关闭mesh Renderer以便查看mesh Collider "For Unity 5, we must also select "Convex" on the Mesh Collider, in order for the Mesh Collider to work correctly with the updated Physics Engine." 如果不勾选Convex,能运行,但console下会出错误提示: “Non-convex MeshColli…
关于刚体Rigidbody,手册上是这么描述的: Control of an object's position through physics simulation. 通过物理模拟控制一个物体的位置. Rigidbody components take control over an object's position - it makes the objects fall down under the influence of gravity, and can calculate how o…