CommitLog |
This commit is contained in:
parent
3bb1a3d7ca
commit
e3a65c1d57
2 changed files with 1 additions and 30 deletions
|
@ -47,7 +47,7 @@ starty = starty - (starty % 32);
|
|||
</arguments>
|
||||
</action>
|
||||
</event>
|
||||
<event eventtype="2" enumb="0">
|
||||
<event eventtype="3" enumb="0">
|
||||
<action>
|
||||
<libid>1</libid>
|
||||
<id>603</id>
|
||||
|
|
|
@ -1,31 +1,2 @@
|
|||
|
||||
|
||||
for(var xx = startx; xx < xmax;xx+=32)
|
||||
{
|
||||
for(var yy = starty; yy < ymax;yy+=32)
|
||||
{
|
||||
var expe = string(xx)+string(yy)
|
||||
var should_continue = false;
|
||||
for(var i = 0; i <= count; i++)
|
||||
{
|
||||
if(obj_controller_world_gen.generated_areas[i] == expe)
|
||||
{
|
||||
should_continue = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(should_continue)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
obj_controller_world_gen.generated_areas[obj_controller_world_gen.generated_count] = expe;
|
||||
obj_controller_world_gen.generated_count ++;
|
||||
|
||||
if(random_range(0,10) > 5)
|
||||
{
|
||||
instance_create(xx,yy,obj_asteriod);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue