- Home /
3D Model problems
Hello, I'm a programmer and I've been given some 3d models made in 3ds max. I've imported the character model made for the bootcamp demo for Unity3D, which works fine but when put in the model (of a library in my case) or even on a simple terrain, he simply falls through. Does anybody know how to solve this problem?
I even tried to import the Library model INSIDE the actual bootcamp scene and the character would walk on the terrain but it would also walk through the walls of my model
Any idea???
Answer by Loius · Oct 26, 2010 at 03:57 PM
Add a collider to your mesh.
Components->Physics->whatever collider(s) seem appropriate.
I wish it was that easy! The soldier from the bootcamp project just goes through ANY new cube, sphere or general component that I try to use! I can't figure out why that is happening.... any type of collider I try just doesn't work...
Are you teleporting by using transform.position or transform.Translate? You need to use rigidbody members like .velocity or .AddForce, or use CharacterController members like .$$anonymous$$ove
Your answer
Follow this Question
Related Questions
How can I destroy a object(like house) with a bomb? 0 Answers
When I look around, my character rotates in a weird circle and it causes it to move around. 0 Answers
Slide when touching walls without losing velocity 1 Answer
How to rotate an object 360 degrees around a sphere with collisions? 0 Answers
3D box collider go through terrain 1 Answer