CommitLog |
This commit is contained in:
parent
a951c8908b
commit
5519e5bf70
18 changed files with 565 additions and 26 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Reference in a new issue