Random generated debris in empty space
So I'm building a simple space game. Basically you're able to float around at absolute freedom without any drag or gravity. **Here's how it works:** - I use rigidbody.AddForce to propel the player...
View ArticleMaking like 5k cubes, into one mesh?
I heard this is called chunking, I need it to make my game really smooth.
View ArticleVoxel chunks?
I Have made a simple voxel engine. I Have made it so that if you type createChunk(xPosisitonInWorld, yPositionInWorld); It will create a 16x16 chunk at that world point. The problem I have is trying to...
View ArticleHow Can I make random level generation?
So i am trying to make a game that has the same level generation like minecraft. I am using all cubes. I know about the chunks but what i dont know how to do is to make the chunks. Do i make them by...
View ArticleTransform.Translate: bad performance
Alright, so I am making a procedurally generated, tile-based 2D game. This means I have to have 'chunks' so as to not have the entire (infinite) world in memory at once. Furthermore, I limit the player...
View ArticleQuestion about chunks and why do they take so much processing power
Hello! So I started testing some stuff out in my game, and I've found out that, normally, when my game world is 256*256*256 and the chunks are 16 units large, the game runs fine, at max fps, but when i...
View ArticleHow to set up a minecraft-like game?
Okay first: I'm new to Unity but not to programming. I also have already some gamedev experience and understand what matrices are etc. I don't want you to do the work for me - I'm asking here for an...
View ArticleHow to load stacking chunks on the fly?
I'm currently working on an infinite world, mostly inspired by minecraft. A **Chunk** consists of 16x16x16 blocks. A block(cube) is 1x1x1. This runs very smoothly with a **ViewRange** of 12 Chunks...
View Articlehow to cut my terrain in to separate chunks?
hey i do a big world. and the game ide is mmo,fps (**PC standalone**) I have this terrain that I want to avail myself of. **info:** Width & Length 20kX20k : height 2010 : heigtmap resolution 4097 :...
View ArticleEditing voxels @ chunk borders
At the moment I'm also editing the neighboring chunk if the current voxel is at the end(or beginning) of its chunk. I know that there is more cases when we are editing at edges and corners of each...
View ArticleChunk position algorithm
Hello, I'm making a Minecraft clone but I'm a bit stuck right now. So first this is what I want to do: ![alt text][1] My chunks are 16x16x16 big and I have 10x10x10 loaded chunks. Because I don't want...
View ArticleBlend edges between multi terrains?
Hey i don't know how it's called but what i mean is that i have a terrain a big one and i have slice it to 32 x 32 pieces,and what everyone may have got to that's how do i blend between the terrains ?...
View Article2D Circular Array
Hello guys, this one is really hard to understand for me. My current approach of storing level data is to always have 8x8 Chunks and each chunk has a 2d-Array of bytes representing each block in this...
View Articlelosing Heightmap resolution when slicing terrain :?!
hey how do I create a large terrain without losing heightmap resolution. i have a terrain That is 20,000 X 20,000 large, I have split it up to 32x32 which is (1024 piece terrains) and the heightmap...
View ArticleIs it a good idea to make many terrain chunks instead of a big one?
I really would like lightmaps on my terrain, so that there is no need for real shadows from my static objects (and Ambient Occlusion - so pretty :3 ). Having a big terrain is easy for the workflow, but...
View ArticleLoading scene chunks when they need to be displayed
Hi, I want to build a side-scrolling (jump and run) game that has an infinite level. Therefore I have to split the level up into smaller chunks. My problem is to find out when a new chunk has to be...
View ArticleGenerating Chunks
Hello, so i have finaly managed to generate chunks with a lot of help from this great community. So i want to generate only visible block for now, but i am stucked at there how to manage thath, i have...
View ArticleWays to optimize voxel generation like Minecraft
Let me get something straight first; I don't need it exactly like Minecraft. I just want to know how they generate millions of blocks on screen without serious fps issues. I know of chunks and im...
View ArticleImport a 513x513 Texture2D (heightmap)
For my new game i need a terrain that consists out of 256x256 tiles. Because of the 65k limitation i have to break the terrain up in several meshes of 64x64 tiles. This means that for making a mesh, i...
View ArticleSending Level Data over Network
Hello. I'm trying to send Chunkdata from a Level over the Network. There are 256 Chunks where each is 16*16. Every cube (1*1*1) is saved in a List. public List thisChunk = new List(); The MP_Chunk...
View Article