Tagged Questions
-1
votes
1answer
101 views
Generating a grid of cubes in 3D space [closed]
I am trying to generate a grid of cubes in 3D space and It aint workin...
All im doing is for looping YXZ (in that order) (nested for loops) then im doing cubes[x][y][z] = ... (new Location(x,y,z))
...
12
votes
2answers
699 views
Smooth Voxel Terrain
As a personal project, I'm trying to make a terrain generator that will create terrain looking something like the Castle Story smooth terrain.
If you haven't seen it before, here:
So as you can ...
0
votes
2answers
398 views
“Marching cubes” voxel terrain - triplanar texturing with depth?
I am currently working on a voxel terrain that uses the marching cubes algorithm for polygonizing the scalar field of voxels. I am using a triplanar texturing shader for texturing. say I have a grass ...
2
votes
1answer
1k views
C# XNA: Effecient mesh building algorithm for voxel based terrain (“top” outside layer only, non-destructible)
To put this bluntly, for non-destructible/non-constructible voxel style terrain, are generated meshes handled much better than instancing? Is there another method to achieve millions of visible quad ...
4
votes
1answer
211 views
Method for procedurally creating spawn points
I have a world made of floating islands that are procedurally generated. I would like to spawn enemies or the player in logical-non-falling-into-space spawn points. Ideas on how to accomplish this? ...
-1
votes
3answers
2k views
3D Procedural Planet Generation
I was looking for some inspration for my Voxel based game I am writting and came across this: http://www.youtube.com/watch?v=rL8zDgTlXso. I would like to know how to go about (or preferably source ...
0
votes
1answer
728 views
Large Blob of landmass in Minecraft Terrain Engine in XNA
I am creating a Minecraft Terrain engine in XNA, and want to create a large blob/cluster of blocks, in a random sort of blob thing, shaped somewhat like the stuff under the Volume Rendering heading on ...
16
votes
3answers
2k views
How can I generate floating land masses for a Minecraft-like engine?
I am creating a Minecraft-like engine in XNA. What I want to do is create floating islands similar to the one shown in this video:
http://www.youtube.com/watch?v=gqHVOEPQK5g&feature=related
...
30
votes
3answers
12k views
How are voxel terrain engines made?
A few days ago I found something called voxel terrains and I think that they're pretty cool. But I don't know anything generating them. Do you model it in your modeling software or use something like ...