0
votes
2answers
75 views

Unity 4 Character Mesh Collider not aligned - character falls through. Image attached inc source unity asset link

Hello Peeps (first post yay). I have just started to learn about unity and still going through various tutorials and learning the interface along with C#. I am running Unity 4 and downloaded a free ...
2
votes
1answer
74 views

“Tranform” a mesh into another programaticly

I need some way to transform my mesh into another by adding or subtracting triangles and vertices and changing their position. My goal is to transform my "Monster"(that is a single mesh) into a ...
1
vote
0answers
64 views

Pixel culling with box

I am trying to do a system of wall and holes. Imagine I have a simple box mesh maybe like a wall and I want to add some holes without changing the wall's mesh. For me the process should be like this : ...
1
vote
1answer
149 views

Mesh Particle Emitter

We use the untiy3d engine. We use the version: 3.5.0 and the Ellipsoid Particle Emitter of the Legacy Particles with ios target platform Heavy use of Mesh Particle Emitter, small number of particles ...
2
votes
0answers
247 views

How to improve performance while generating (extruding) mesh in unity3d on iOS?

I'm going to make a game similar to AudioSurf for iOS, and implement in it "generate of route to certain parameters". I used the example of Extrude Mesh from Unity Procedural Example and this answer ...
0
votes
2answers
508 views

Unity3D OffNavMesh jump issue

I have set up Unity navigation meshes (four planes), navigation agent (sphere) and set up automatic and manual off mesh links. It should now jump between meshes. It does jump between meshes, but it ...
1
vote
1answer
1k views

Unity C# generated mesh is offset why is it not in the correct location?

I am attempting to generate a mesh in unity from script. The mesh is generated by raycasting out in a particular direction. Then getting the vertices from the hit point or from where the ray ...
0
votes
1answer
189 views

How can I use the Collision Deformer in MegaFiers?

I'm new to Unity & MegaFiers. I've tried to find a tutorial on how to use the collision deformer everywhere but I can't find anything. I have a mesh renderer on a skinned mesh and I'm trying to ...
0
votes
0answers
92 views

How to put interactive objects on to a page mesh (mega-fiers)?

I am creating an interactive iPad book and had a question: how do you put an interactive object on a page mesh? The object needs to follow the page as it bends and be able to be touched (and move). I ...
1
vote
1answer
2k views

unity mesh collider not in the same position as the object

I'm currently learning Unity and I want to import a 3D model to my scene (.FBX) I use mesh collider for detecting collision, but the collider's position is not the same as my 3D object. The mesh's ...
0
votes
1answer
409 views

Mesh with different materials unity3d

How do I create a mesh in unity via script to use two different materials?
0
votes
1answer
1k views

What exactly does mesh.optimize do in Unity3d?

I have a mesh that I create every frame in unity3d using the combine meshes function. I cannot get the mesh to appear if I do not call the mesh.optimize function on it, using recalculate normals or ...
2
votes
1answer
862 views

Merge meshes with different materials in unity3d

I have two separate meshes I want to merge with different materials using the combineMeshes function in unity. When I combine the meshes though, the resulting mesh just uses the material of the first ...
1
vote
1answer
293 views

Create Transform to part of mesh in Unity?

I'm working on a project in unity and there's a script that has a reference to a transform to a character's hand. This is used to put an item in the character's hand and have it follow it as the hand ...
4
votes
1answer
816 views

3D Sphereical Terrain with an 8 mesh sphere. The edges of the mesh are obvioulsy seen and I'm not sure why

I'm working in Unity3D, but my issue is with 3D meshes. I'm hoping someone here can help or point me in the right direction. I have 2 version of code, http://www.pasteit4me.com/695002 (old) and ...