Yes we do.
I agree… PETITION
i sign it
1 heart on Omnis’s post is signing the petition.
ADD NEW TAG (unsigned u owe me )
- YES
- NO
0 voters
Naw not really it takes 3 seconds to create a poll /j
hehe no u @UnsignedArduino
58.72!
WHO VOTED NO
Oh no what are we gonna do with the person who voted no?
New Tiles In ArcadeMakecode
How To Get Those
? You should just be able to find them in the tile selector?
Oh nevermind it’s an extension:
Forum post:
Well, it is an extention and I also used it before and in fact it is in the forum
How to Test the link before editing it
That was so funny if the newer tiles are extension
It gives me an idea, I am creating Arcade Forces Speed Battle (
Wait whaaat? How did you mask that death animation into the frame? I need to know
So I first define some variables:
Then in a game update loop:
Every
round(1000 / recording_fps)
(which works out to be 33ms) it will make a temporary image that is half the screen size (plus one for border) and draw the screen to somewhere past the very top left, so that the center ends up being in the actual image. Then it draws the border and inserts it to the list of the last 2 seconds, which is the list recording_frames
. Then if the length of the recording is over (2 * recording_fps)
(which works out to be 60 frames) then it removes the oldest frame so there are always 2 seconds in memory.
When you lose, it first splits up the recording into the first second and second second. I have no idea why I did that lol.
Then creates the sprite that will play back the last two seconds.
Then it makes the “RIP” text: (which is just a text sprite)
Then it plays the melody, the recording, and then the actual game over:
“its big brain time”
Thanks for sharing! this game is really cool. I’ve been fiddling with the code for a bit and got the new version to run on my pygamer by removing the death animation, as well as experimenting by adding 4 frames of coyote time to the game as I found sometimes it felt like the player would fall off a ledge even after pressing jump. My modifications can be found here if anyones interested in taking a look (I’m most comfortable in javascript so I converted the project before modifying, sorry if that makes it unreadable to some). Once again, thanks for sharing! this game is an awesome time killer when I’m in need of something to do.