How to make arcade run faster?

I’m pretty sure block coding was ever intended for such large projects. One thing I do is to use the scroll wheel when moving up which helps with movement. Zooming out also reduced movement distance.
Some actually useful solutions:
-Blocks of code can be minimised by right clicking on it which helps lag (I always do this with
arrays and character animations). Making and organising code with functions helps to do this.
-Cleaning up unused blocks lying around (tidying your workspace!)
-If you have lots of repeated code try cleaning them up with one function to reduce the amount of
blocks.
-You could switch to javascript or python but that takes learning a whole new language which even I
don’t want to do.
-Close the simulator when doing stuff as that is very laggy in itself.
-General optimisations to code (like using arrays instead of a gigantic if else line)
Sorry for the text wall lol

3 Likes