Does anybody know how to make a Makecode Arcade game intro?
If so, can you explain how?
you could use the screen transition extension https://github.com/riknoll/arcade-screen-transitions
and you can look at this game i made with my friend to see how to use it
https://the-dude-who-makes-games.itch.io/colony-side
https://arcade.makecode.com/S98339-19192-32016-96592
this game has a intro at the start
like a transitional intro or a title screen?
My suggestion would be to set the background to your title screen, then only start the game once the A button is pressed (move all the existing ‘on start’ code into the ‘on a pressed’ section, and make sure there is an ‘if’ statement checking for some variable like ‘on_title_screen’ to make sure you don’t run the code twice!)
Transitional intro.
Thank you, everyone!
there an extention for transitions [Extension] arcade-screen-transitions
Thank You!