CommitLog |
This commit is contained in:
parent
e064f6d571
commit
29110d6a69
2 changed files with 7 additions and 28 deletions
|
@ -28,21 +28,24 @@
|
||||||
<string>/// GENERATE CHUNK
|
<string>/// GENERATE CHUNK
|
||||||
instance_list = ds_list_create();
|
instance_list = ds_list_create();
|
||||||
loaded = true;
|
loaded = true;
|
||||||
|
var hasGeneratedBlackHole = false;
|
||||||
|
|
||||||
// GENERATION
|
// GENERATION
|
||||||
for(var xx = 0; xx < CHUNK_SIZE*TILE_SIZE; xx+= TILE_SIZE)
|
for(var xx = 0; xx < CHUNK_SIZE*TILE_SIZE; xx+= TILE_SIZE)
|
||||||
{
|
{
|
||||||
for(var yy = 0; yy < CHUNK_SIZE*TILE_SIZE; yy+= TILE_SIZE)
|
for(var yy = 0; yy < CHUNK_SIZE*TILE_SIZE; yy+= TILE_SIZE)
|
||||||
{
|
{
|
||||||
var rnd = random_range(0,500);
|
var rnd = random_range(0,1000);
|
||||||
|
|
||||||
show_debug_message("Generation: "+string(rnd))
|
if(floor(rnd) == 500)
|
||||||
if(rnd < 100 > 200)
|
{
|
||||||
{
|
if(hasGeneratedBlackHole)
|
||||||
|
continue;
|
||||||
var inst = instance_create(x+xx,y+yy, obj_black_hole);
|
var inst = instance_create(x+xx,y+yy, obj_black_hole);
|
||||||
inst.CHUNK_CONTAINED = self.id;
|
inst.CHUNK_CONTAINED = self.id;
|
||||||
|
|
||||||
ds_list_add(instance_list, inst);
|
ds_list_add(instance_list, inst);
|
||||||
|
hasGeneratedBlackHole = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if(rnd % 100 < 1)
|
if(rnd % 100 < 1)
|
||||||
|
|
|
@ -253,30 +253,6 @@ image_angle -= 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
image_angle += 5;
|
image_angle += 5;
|
||||||
</string>
|
|
||||||
</argument>
|
|
||||||
</arguments>
|
|
||||||
</action>
|
|
||||||
</event>
|
|
||||||
<event eventtype="5" enumb="0">
|
|
||||||
<action>
|
|
||||||
<libid>1</libid>
|
|
||||||
<id>603</id>
|
|
||||||
<kind>7</kind>
|
|
||||||
<userelative>0</userelative>
|
|
||||||
<isquestion>0</isquestion>
|
|
||||||
<useapplyto>-1</useapplyto>
|
|
||||||
<exetype>2</exetype>
|
|
||||||
<functionname></functionname>
|
|
||||||
<codestring></codestring>
|
|
||||||
<whoName>self</whoName>
|
|
||||||
<relative>0</relative>
|
|
||||||
<isnot>0</isnot>
|
|
||||||
<arguments>
|
|
||||||
<argument>
|
|
||||||
<kind>1</kind>
|
|
||||||
<string>/// Release keys.
|
|
||||||
event_perform(ev_keyrelease,ord('W'));
|
|
||||||
</string>
|
</string>
|
||||||
</argument>
|
</argument>
|
||||||
</arguments>
|
</arguments>
|
||||||
|
|
Reference in a new issue