The dynamic-mesh tag has no usage guidance.
0
votes
0answers
21 views
Smooth mesh out after merging in Blender
I just merged two of my meshes together and I'm getting a line that I want to smooth out so it looks like one mesh.
5
votes
1answer
160 views
Volume preserving procedural mesh deformation
I'm having difficulties trying to create a procedural mesh that deforms on impact. The deformation is meant to look and feel like metal when it is being forged. Since this is less of an aesthetic ...
6
votes
2answers
1k views
Performance of manipulating a mesh in realtime
Does Unity allow streaming mesh data that can be continuously changed?
I have a level that is dynamically changing based on some parameters. The number of triangles stays the same, they just change ...
3
votes
1answer
69 views
What is the mesh generation technique shown in Chrome Music Lab?
The Google toy of the day, https://musiclab.chromeexperiments.com/Spectrogram, features a continuously scrolling 3D render of a shape with cross sections that seem to equal the spectrograph of sound ...
2
votes
2answers
951 views
What is the cause of this lighting artifact on my dynamic terrain mesh?
I am generating my own terrain mesh in Unity, using pseudo-random noise to determine the height. I construct the mesh using quads, each quad is composed of two triangles.
All seems to be going well, ...
3
votes
2answers
2k views
How to draw the contour of a hexagon area, like in Civ 5
I am trying to achieve to hexagon contour look you find in Civilisation 5:
I want to outline the area a unit can move to on a hexagon grid, so far I can get a list of all the tiles a unit can move to ...
2
votes
2answers
235 views
Traditional Chunk Loading vs. Chunk Swapping
I'm designing a voxel-based game (aren't we all?), and just yesterday implemented infinite terrain generation. I'd already had the terrain generation working off of simplex noise, so this wasn't a ...
4
votes
2answers
2k views
Creating a curved mesh on inside of sphere based on texture image coordinates
In Blender, I have created a sphere with a panoramic texture on the inside. I have also manually created a plane mesh (curved to match the size of the sphere) that sits on the inside wall where I can ...
4
votes
0answers
304 views
What GPU culling techniques are appropriate for voxel spheres other than octrees? [closed]
I'm creating a dynamic smooth-voxel based world in the shape of a sphere. Right now my current approach is to spherize a cube, generate voxel terrain on each of the six patches, and then use octrees ...
4
votes
1answer
645 views
Stitching meshes together
I have a voxel engine that generates a mesh per chunk and now I want my meshes to be 1 mesh, but if I create them as a single mesh I kind of lose the benefit of chunking the data in the first place.
...
2
votes
1answer
1k views
Dynamic obstacles avoidance in navigation mesh system
I've built my path finding system with unreal engine, somehow the path finding part works just fine while i can't find a proper way to solve dynamic obstacles avoidance problem. My characters are ...
1
vote
1answer
760 views
Why is my mesh generation algorithm not working properly?
I am trying to generate a grid in OpenGL ES, using known methods for triangle strips and stitching as shown in:
this post and this post
The code below, generates the vertices for a 4x4 grid with a ...
6
votes
1answer
3k views
How can I convert a 2D bitmap (Used for terrain) to a 2D polygon mesh for collision?
So I'm making an artillery type game, sort of similar to Worms with all the usual stuff like destructible terrain etc... and while I could use per-pixel collision that doesn't give me collision ...
5
votes
1answer
1k views
How would I create Dynamic LOD with Quad Trees
I would like to be able to create something like the following http://www.youtube.com/watch?v=LxZhWrSmrOY&feature=player_embedded how would I create something like it? I understand I will have to ...
1
vote
1answer
188 views
Need to make animation whereby the character shatters into a bunch of pieces
I would like to take a 3d character model, cut out a bunch of shapes (or a bunch of triangles in the shape of the pieces I want) and then have the pieces separate from each other at the beginning of ...
2
votes
2answers
347 views
Do unused vertices in a 3D object affect performance?
For my game I need to generate a mesh dynamically. Now I'm wondering does it have a noticeable affect in FPS if I allocate more vertices than what I'm actually using or not? and does it matter if I'm ...