TIps&Tricks to Make code Arcade

Any tips and tricks to do certain things in Make code Arcade.

1 Like

Tips for spawning enemies:

Here is my tile map. The flowers are where I want to spawn my enemies.

To spawn the enemies

use these blocks.

2 Likes

Within the blocks code editor, right click and select “collapse” on block containers to collapse them. Useful if you want to put your focus on one block container and to not cause lag.

2 Likes

Or use the tile util extension neith that blovk

2 Likes

Thank you

Could you explain a little more

1 Like

So placed flower tiles around the map right. The “for element (value) of array of tiles [Flower Block]” is representing every single flower block. Then I create the number of enemies that are the amount of flower blocks. Ex: 4 enemies for 4 flower tiles. Then, I place each and every enemy on its own flower block. Then to remove the flower block, I do “set [Grass Block] on top of (value(the flower blocks))”.

1 Like