Now the test terrain generator will set a few cells to a different type.

This commit is contained in:
Relintai 2021-04-18 19:39:12 +02:00
parent ccb6070bd8
commit a4459a949d
1 changed files with 6 additions and 1 deletions

View File

@ -13,4 +13,9 @@ func _generate_chunk(chunk: TerraChunk) -> void:
var vx : int = x + (chunk.position_x * chunk.size_x)
var vz : int = z + (chunk.position_z * chunk.size_z)
chunk.set_voxel((s.get_noise_2d(vx, vz) + 2) * 10.0, x, z, TerraChunkDefault.DEFAULT_CHANNEL_ISOLEVEL)
var val : float = (s.get_noise_2d(vx, vz) + 2) * 20.0
chunk.set_voxel(val, x, z, TerraChunkDefault.DEFAULT_CHANNEL_ISOLEVEL)
if val < 33:
chunk.set_voxel(2, x, z, TerraChunkDefault.DEFAULT_CHANNEL_TYPE)