CommitLog |

This commit is contained in:
SilicaAndPina 2020-07-25 00:24:30 +12:00
parent a951c8908b
commit 5519e5bf70
18 changed files with 565 additions and 26 deletions

View file

@ -34,10 +34,10 @@ for(var xx = 0; xx < CHUNK_SIZE*TILE_SIZE; xx+= TILE_SIZE)
{
for(var yy = 0; yy < CHUNK_SIZE*TILE_SIZE; yy+= TILE_SIZE)
{
if(random_range(0,100) < 5)
if(random_range(0,100) < 1)
{
var inst = instance_create(x+xx,y+yy, obj_asteriod);
inst.CHUNK_CONTAINED = id;
inst.CHUNK_CONTAINED = self.id;
ds_list_add(instance_list, inst);
}