Tagged Questions
2
votes
2answers
718 views
Dynamic Terrain Texture
I've been looking at a 2D physics game called 'Hill Climb Racing' (Android and iOS) and was wondering how they went about texturing the terrain?
I've had a think about it and I've come up with ...
-1
votes
1answer
254 views
GPU based procedual terrain borders?
I'm working on a game that preferably should feature a combination of designed and procedurally generated terrain where the designer specifies in somewhat detailed terms what type of terrain a given ...
3
votes
1answer
404 views
How is the terrain generated in Commandos and Commandos game clones/look-alikes?
The Commandos series of games and its similar western counterpart, Desperados, use a mix of 2D and 3D elements to achieve a very pleasing and immersive atmosphere. Apart from the concept that alone ...
1
vote
3answers
775 views
Any ideas on reducing lag in terrain generation?
Ok so here's the deal. I've written an isometric engine that generates terrain based on camera values using 2D perlin noise. I planned on doing 3D but first I need to work out the lag issues I'm ...
22
votes
4answers
2k views
Where to start when building a 3D terrain editor?
I'm looking to build (for start) a simple tool, that could raise, lower, smooth and texture the terrain.
So, what are the things I have to go through in order to make such terrain editor?
And maybe ...
11
votes
1answer
399 views
What are some current techniques for rendering deformable landscapes?
What are the current techniques than can be used for efficiently rendering 3D heightmap-based deformable landscapes?
For example, in the non-deformable landscape problem, ROAM used to be the way to ...
3
votes
3answers
941 views
How did they do it: Trine 2.5d terrain?
How did they make the terrain in trine? I think they took a polygon approach. It doesn't seem that they used a heightmap because it is in all three vectors, or a voxel method because it doesn't have ...
10
votes
2answers
2k views
Quadtree terrain splitting - I don't get it
Most of the papers i've read base their terrain in some form or another on a quadtree. See this at page 38:
...
5
votes
3answers
1k views
How can I generate a terrain heightmap from the perlin algorithm?
How can I generate a terrain heightmap from the perlin algorithm? I am trying to make a terrain generator (like World Machine). This is the source code I have for the perlin. The only thing that I ...
13
votes
2answers
6k views
How can I make huge terrains in Unity?
How can I make extremely huge terrains in Unity? It seems like I can set width and length to large values. But the Heightmap resolution only goes up to 4097 and the Detail resolution only goes up to ...
1
vote
3answers
732 views
Optimizing perlin noise generation
I have a perlin noise generator as shown below.
public class ImprovedNoise
{
private const int GradientSizeTable = 256;
private readonly Random _random;
private readonly double[] ...
10
votes
2answers
3k views
Heightmap, Voxel, Polygon (geometry) terrains
In relation to Heightmap, Voxel and Polygon (geometry) terrains:
What are the main differences between all these three?
Can you form a "smooth" terrain with Voxels, I mean, can you for example get a ...
0
votes
2answers
4k views
How do I create a big multiplayer world in UDK?
I want to create a big multiplayer world in UDK and I'm having a few difficulties.
I created the biggest terrain possible but then any terrain related action I do takes forever. However, I've seen ...