CommitLog |

This commit is contained in:
SilicaAndPina 2020-07-24 08:57:47 +12:00
parent e74edd8841
commit a9c35b6d6c
9 changed files with 128 additions and 60 deletions

View file

@ -0,0 +1,20 @@
///generate_chunk()
var chunk_grid = ds_grid_create(128,128);
for(var xx = 0; xx < 128; xx++)
{
for(var yy = 0; yy < 128; yy++)
{
if(random_range(0,10) > 5)
{
chunk_grid = obj_asteriod;
}
else
{
chunk_grid = 0;
}
}
}