I Made a Hard Speedrunning Game

Ғылым және технология

➤Play the Game - lazyalarm.itch.io/the-time-tower
I joined the Ludum Dare 51 Game Jam with the intent of turning one of my favourite Mario Party DS minigames into a 2D Platformer Speedrunning Game. I soon discovered that this was perhaps the hardest game I had made yet.
The Time Tower
made with:
Blender,
Asperite,
Godot,
Photoshop Elements 2018,
Paint,
PureRef,
Freesound,
SFXR,
Audacity,
OpenGameArt
Music:
"Airship Fortress" by Shinobu Tanaka
"The Pressure's On" by Hironobu Yahata, Shinya Ohtouge
"Lifted Upward" by Shogo Sakai
"Lovely Oasis" by Shogo Sakai
"Space Explorer" by Shogo Sakai
"Wiggler's Garden" by Hironobu Yahata, Shinya Ohtouge
"Options" by Hironobu Yahata, Shinya Ohtouge
"They're Neck & Neck" by Hironobu Yahata, Shinya Ohtouge
"Woods Wayfarer" by Shogo Sakai
"Forest Dwellers" by Mahito Yokota
"Contemplation" by Hironobu Yahata, Shinya Ohtouge
"Icy Realm (Frozen Hillside)" by Shogo Sakai

Пікірлер: 397

  • @AlexTWO22
    @AlexTWO22 Жыл бұрын

    I use something called tilesetter to make my tile sets. It automatically makes every variation of tile for you based on one base tile, it speeds up the process a lot. I use it all the time and it's definitely worth checking out if you're struggling with tile sets.

  • @findot7777

    @findot7777

    Жыл бұрын

    Yes I use it it is so good

  • @intangiblematter_misc

    @intangiblematter_misc

    Жыл бұрын

    Can confirm! Tilesetter is a life saver

  • @tylerfox6754

    @tylerfox6754

    Жыл бұрын

    Fun Fact: every ten seconds was a gamechamp competition theme for the game that inspired hollow knight which the gamechamp game was apple knight

  • @findot7777

    @findot7777

    Жыл бұрын

    @@tylerfox6754 which means "the knights" name in that game is hungry knight

  • @beatfromjetsetradio8239

    @beatfromjetsetradio8239

    Жыл бұрын

    @@tylerfox6754 Warn me next time you drop an AoE Stroke spell.

  • @ImmacHn
    @ImmacHn Жыл бұрын

    A serious speedrunner here! A niche one though, it was fun, a couple of things to take into account. 1 -> Have pad support, even if you can't rebind it, throw in a sensible controller binding. 2 -> Allow resetting quickly, I had to close the game each time I wanted to retry, make the death animation quicker as well. 3 -> For future games consider not using a global timer. This sometimes creates places where you have to wait and prevents some kinds of optimizations. 4-> Many jumps require the use of coyote time, which is why many people probably will have issues when jumping. Also you might have added a little too much coyote time. Finally here is my run of your game! I apologize I messed up and didn't record the audio, had to improvise. kzread.info/dash/bejne/q6mFtphsmt2Ym7Q.html

  • @LazyAlarm

    @LazyAlarm

    Жыл бұрын

    That's awesome! I'll definitely keep all of this in mind moving forward. Thanks for the video of the run, it was really cool seeing the tricks you used to improve the time!

  • @bogged5672

    @bogged5672

    Жыл бұрын

    You can kind of skip the second last part with the vertical cogs. At the very start you can wait a little bit on the ground cog to gain just enough hight so that you can jump to the right+wall jump and skip the left part of this section completely. Hopefully i explained it goood enough so you can understand. Still amazing run obviously.

  • @fugue91

    @fugue91

    Жыл бұрын

    The missing reset option is triggering me... otherwise I got a 1:21 time by now. Nice game :)

  • @AndrewTheAndrew

    @AndrewTheAndrew

    Жыл бұрын

    1

  • @NathanOnline
    @NathanOnline Жыл бұрын

    This game is already better than pretty much any game I’ve made, you are cracked at this lmao

  • @NotExplosive

    @NotExplosive

    Жыл бұрын

    Keep doing game jams and you too will be cracked at this! I made my first "good" game on my fifth game jam. And even then it wasn't that good lol

  • @ItsKevin183

    @ItsKevin183

    Жыл бұрын

    @@NotExplosive I entered the Game Off 2022 gamejam and it will be my first gamejam ever. Got a sick idea in mind and its gonna be a ragegame sort of like Jump King. (got till end December to make it :) )

  • @macawls
    @macawls Жыл бұрын

    Small tip for the "if statement hell" and movement. You can instead make a state machine using code (jumping, wall sliding, running, walking) etc. It makes things much more manageable and less error prone.

  • @jurekmc

    @jurekmc

    Жыл бұрын

    can you splain a basic wsy of how to inplement a state machine and the basic idea of one?

  • @clouddev8733

    @clouddev8733

    Жыл бұрын

    @@jurekmc basically the state decided which code runs so if you're in a run state none of the attack code would even be looked at until the state was passed over to attack

  • @piratesephiroth

    @piratesephiroth

    Жыл бұрын

    @@jurekmc kzread.info/dash/bejne/eJijz9yyaNLRnLQ.html

  • @TGameDev

    @TGameDev

    Жыл бұрын

    @@jurekmc there are multiple ways to approach this but the most visual way to explain it in code is this. You make a switch statement, and each case is one "state." So only in case #1 can you be idle, but if you start to move that changes to case #2 where you'll be running. None of the code from the other sections gets ran so you can isolate things nicely in that way. Managing which state is also pretty simple in that you'd only have one variable for which state is current, and maybe setup an Enum to tell them apart at a glance (e.c. State.Jump). Not that this is even a good or the best way to setup a finite state machine, but thats the gist of how it works.

  • @ManOfDuck
    @ManOfDuck Жыл бұрын

    Fun game! Controls were fun, but the running felt disproportionately slow compared to the much more satisfying walljump. Also felt weird that landing with the jump button held did a second jump. That caused me a few deaths when I was trying to do high jumps. Last level also felt like a huge difficulty spike, it took me 15 minutes to beat the game and I'd say 8-10 of those were spent on the last level. Resetting the cycles when you die or hit a clock would help immensely with that, most of my deaths felt completely random and determined by the cycle.

  • @solidsnakedred
    @solidsnakedred Жыл бұрын

    I think it is probably the perfect start to a speedrun game. Personally I loved the background it reminded me of being at the arcade and seeing the grungy backgrounds almost 8-bit. I agree with you that there does need to be almost a bit of freedom to a speedrun game. You could infuture add split paths that one might be a little harder but you save alot of time for. Giving the option of choice even if by illusion helps a game feel more like you are making the choices. Absolutely loved the video and I hope to see more games from you.

  • @TSUKI-games
    @TSUKI-games Жыл бұрын

    Crazy how you can make so much progress in so little time! This video and the story telling is so inspiring! Learnt so much from it, thanks for making this video!

  • @TGameDev
    @TGameDev Жыл бұрын

    Awesome video, thanks for sharing and grats on finishing, looks pretty fun! Actually, I also made a platformer for a game jam the other month, so it was pretty cool seeing the differences between how we approached things from a design perspective. Interestingly, despite the theme being wildly different (ours was "nothing is explained") we had a similar idea in that the level itself teaches them.

  • @tommygarson8592
    @tommygarson8592 Жыл бұрын

    dude the background and gear sprites are very fitting if you ask me. there's this pleasing sort of pixelly grit to it that has a nostalgic quality in my eyes. I'm having trouble describing it but, I like it

  • @susobamna

    @susobamna

    Жыл бұрын

    Flash vibes

  • @gameguysd
    @gameguysd Жыл бұрын

    Just got a 57.67!! Great game, dude. Really interesting watching your creative process at work here.

  • @PhenoPhyre

    @PhenoPhyre

    Жыл бұрын

    thats not possible even with tas nice try though

  • @PhenoPhyre

    @PhenoPhyre

    Жыл бұрын

    nevermind sorry

  • @gameguysd

    @gameguysd

    Жыл бұрын

    @@PhenoPhyre No sweat, I take that as a complement :D

  • @NoahTheGuyy

    @NoahTheGuyy

    Жыл бұрын

    Wtf tho i play 1-2 hours a day and cant even get a pb

  • @1actose
    @1actose Жыл бұрын

    ALL of the comments by the people who tested it, as well as the style of the game reminds me SO MUCH of Knight And Mourning. Good work! Loved the video!

  • @SkyanUltra
    @SkyanUltra Жыл бұрын

    i'd like to remind you that The World's Hardest Game, a game where you move at a fixed speed using WASD and has NO other special mechanics other than a checkpoint, enemies, and walls, has had its fair share of tricks used to break levels and get just enough of an edge ahead of other runners. wall clips that save but a SINGLE frame, mechanics of the game which allow for immunity due to a slightly botched collision system, and a whole world of route changes. there is no doubt in my mind that, at least compared to a game like The World's Hardest Game, that The Time Tower ABSOLUTELY has speedrun potential. wall jumps could open up a whole new world of routes to take that you never intended, the botched "is stuck" check could potentially lead to the discovery of a way to exploit the collision system of the game, thus allowing for skipping through the slew of waiting you have to do at gears and platforms, waiting to get through them. there's a bunch of other stuff i could list off, but i would be here for way longer than i realistically should.

  • @Pixels4Games
    @Pixels4Games10 ай бұрын

    What a great result for a Game Jam game. All the games I made were never in such time crunches so congrats to you. Great job. - Dan

  • @pliinkploonk
    @pliinkploonk Жыл бұрын

    seeing that mario party ds minigame as inspiration made me so happy! super cool work :)

  • @noatmeal8969
    @noatmeal8969 Жыл бұрын

    really good video, i wish there was an easier way to learn game design because it's something i'm super interested in and i'm currently limited to only watching people like you. thank you for keeping me inspired ❤

  • @kierakmusic7193
    @kierakmusic7193 Жыл бұрын

    you were right about this game being fun to race against yourself! I played it 3 times immediately after watching, my first time was in 23 minutes, second time in 7 minutes, and third time in 3 minutes. So much fun!

  • @JakeWolven
    @JakeWolven Жыл бұрын

    This is honestly pretty inspiring to learn how to make a game. I'm not the best at coding but I love level design and story telling. I feel like you and I could help each other a lot.

  • @user-jn8eh1sq9g
    @user-jn8eh1sq9g Жыл бұрын

    I can't stress it enough, but *I LOVE THE ART STYLE OF THE GAME*, pretty different technique for creating the gears but they are simply the most beautiful thing in the world and should be protected at all costs! Kudos!!

  • @greennitrogen8850
    @greennitrogen88507 ай бұрын

    Great Video! But what's really bringing me back into nostalgia is the Kirby Mass Attack music!! much love

  • @zomeone4507
    @zomeone4507 Жыл бұрын

    personally i quite enjoy the disjointed feeling of the art, it feels unique & fun

  • @Jann75

    @Jann75

    Жыл бұрын

    Got an N64 look mixed with classic pixel art

  • @smugsenko

    @smugsenko

    Жыл бұрын

    somewhat offended when he said he really wasnt a fan of the background, i thought that was the best part!

  • @ToriKo_

    @ToriKo_

    Жыл бұрын

    @@smugsenkohaha same!!

  • @tommb.8578
    @tommb.8578 Жыл бұрын

    i am not in the mood for a speedrun but it took me 4 minutes to beat it, it's preatty fun tbh, the movement feels smooth to be coded in such a short time. nice work

  • @1Chitus
    @1Chitus Жыл бұрын

    I love the artstyle. That crunchy style reminds me back when you needed to 3D model stuff on your own then turn it into 2D sprites for your game, because high tech computers could handle 3D but consoles couldn't, like donkey kong country. Make the character fit the style and I think everything, even the background, is way cool.

  • @solarpellets
    @solarpellets Жыл бұрын

    My first attempt was 6:22, the difficulty of that last room was a huge spike, but I liked it for making you properly master the movement before letting you finish.

  • @Helmshot
    @Helmshot Жыл бұрын

    love the Kirby Mass Attack music, it just fits so well

  • @BobbyTheBest
    @BobbyTheBest Жыл бұрын

    The game looks great! Keep up the great work.

  • @sscutoid
    @sscutoid Жыл бұрын

    ngl I really like the artstyle, I wish you went all in on the crunchy compressed images for the tileset and player

  • @meisterooni9040
    @meisterooni9040 Жыл бұрын

    As you mentioned, the lack of multiple movement options really hinders the speedrunning aspect of the game. I think adding some sort of dash would be a cool change. Also, everything is on a cycle. This means instead of getting a world record by 1 second, you would need to cut of a whole 3 seconds to get the new "cycle". It's a really cool game, and way better than anything I could've done, so great job!

  • @JadonBarnes
    @JadonBarnes Жыл бұрын

    Dude, I love your videos.

  • @pitori.
    @pitori. Жыл бұрын

    Holy shit all geared up is one of my favorite mini games I’m honna love this video

  • @lavapuppydog1109
    @lavapuppydog1109 Жыл бұрын

    I actually love the design of the game specifically the art design the abstraction between the art

  • @PokeNebula
    @PokeNebula Жыл бұрын

    i ADORE your background image though. gives me kirby superstar vibes.

  • @ToriKo_
    @ToriKo_ Жыл бұрын

    I actually really really like the background image, and thought it would look cool if the rest of the game was in that style

  • @Yipper64
    @Yipper64 Жыл бұрын

    10:17 I say that speedrunners will figure that out for themselves. Its kind of something that happens to a game, its not something you necessarily build into a game. Its not like old games *meant* for you to speedrun them, take maybe Metroid for those special endings.

  • @kristianwells8830
    @kristianwells8830 Жыл бұрын

    As someone who also recently made a platformer for a game jam recently, I can very much relate to you being able to clear the game, but none of your friends can. Didn't think my game was a rage one, but Die Rise has only been beaten by me.

  • @arnwaz
    @arnwaz Жыл бұрын

    I love speed running small games, maybe I'll give this one a try.

  • @Tim_flips
    @Tim_flips Жыл бұрын

    Interesting perspective on the game creation process! My runthrough took me about 10 minutes. As a player, my only real frustration was that wall jumping felt like I had to avoid pressing any directional keys, because if I was moving towards the wall when jumping then my character would sort of just fail the jump and not go very far, but if I try to hold the opposite directional key then I have to time it perfectly or else the wall jump doesn't go off. Perhaps a coyote time equivalent where you can wall jump within a couple pixels of the wall? Not really a flaw with the movement, just something I personally disliked. The last level was like 3 times harder then the rest of the game too haha.

  • @RosaliaEmerald
    @RosaliaEmerald Жыл бұрын

    In your tutorial there is a great opportunity to actually forgo giving the player any tutorial instructions. Your introductory level design is enough to teach the player. I'm certain most players would appreciate that level of trust and feel more excited at having figured it out without having it spelt out for them. Great work as usual though! I love seeing how far your game Dev journey is coming along. Can't wait for the next one!

  • @Buglin_Burger7878

    @Buglin_Burger7878

    Жыл бұрын

    I'd rather trust someone who wants to make sure I understand the basics then a person who doesn't. It is better to have a tutorial then not. It is better yet to have an option for the tutorial. Everyone could win. Being aware there is always a first time player as new humans are being born and can play games shows foresight. Just to use Dishonored as a reference, they added an non-lethal combat option in the 2nd game one which you'd never know about without an tutorial if you played like the first game. There is a tutorial for even drop assassinations which mentions you can also do a non-lethal version. Something you'd never try if you play like the first game. Some of the most frustrating things are an "I assumed the player would" moment which often lead to game breaking glitches or even making things impossible forcing you to replay the entire game.

  • @pitifulrock630
    @pitifulrock630 Жыл бұрын

    the art in this game is amazing

  • @itr-dev
    @itr-dev Жыл бұрын

    Pretty cool! When it's important for items not to get out of sync, you might rather want to use [current time % animation length], as that is less susceptible to variable frame-rates and floating point imprecision.

  • Жыл бұрын

    I love the style, it reminds me of old nostalgic flash games

  • @ericbielsaprio3766
    @ericbielsaprio3766 Жыл бұрын

    loved your game, very fun. I did 14:56 at my first attempt and 2:52 at the second, it's actually really entretaining, you got a new follower🤗

  • @MrScorpianwarrior
    @MrScorpianwarrior Жыл бұрын

    As a novice game developer and a novice KZreadr, this video is brilliant. Well put together, organized, and extremely informative. You need more subscribers. People say that a lot, but I truly mean it.

  • @Saas_1
    @Saas_1 Жыл бұрын

    I'm a simple man: I see a new lazy alarm video, I click it

  • @coolgelliegamer9825
    @coolgelliegamer9825 Жыл бұрын

    The fact that it resets you back to the checkpoint every 10 seconds prevents softlocks, smart!

  • @_gamma.
    @_gamma. Жыл бұрын

    It only took me ~19 minutes, fun game! Even if I wanted to DESTROY MY KEYBOARD on that last level

  • @ritchcraft1
    @ritchcraft1 Жыл бұрын

    simple and yet fun, good game design

  • @youwerethere
    @youwerethere Жыл бұрын

    The cog artstyle is cool, it reminds me of Yoshis Island sprites.

  • @zombiechicken1530
    @zombiechicken15303 ай бұрын

    Actually I think the background, and gears look amazing! It would look cool if everything looked like the background and gears.

  • @RexReality
    @RexReality Жыл бұрын

    Omg you have 12k subscribers, I thought you’d have 100k at least. Love the grind bro! ❤

  • @rangy77
    @rangy77 Жыл бұрын

    its rly fun! Good job

  • @PoorPescado
    @PoorPescado Жыл бұрын

    the crushers and gears are the best-looking parts of the game. imagine a game entirely in that style

  • @dustinzacharias8227
    @dustinzacharias8227 Жыл бұрын

    The airship theme from Mario kart 7, AND a theme from Kirby mass attack? You had a good childhood my friend.

  • @downest1
    @downest1 Жыл бұрын

    I got this in my recommended, and I started watching it. I realized how high quality the video was, and expected that you had at least 50k subs and this video had 10k views. At the end of the video, I realized how many subs you have! Keep up the great work, you deserve more subs!

  • @legoboy7107
    @legoboy7107 Жыл бұрын

    Nice! My first playthrough clocked in (pun intended) at about 7 minutes and 35 seconds, and almost all of that was on the last level. The last level is a sudden significant spike in difficulty compared to all the previous ones, which were all pretty easy in my opinion (though I do play a LOT of platformers, and SMB Lost Levels is actually my second favorite of the NES Mario games and I don't find it nearly as hard as most people seem to, so maybe I'm not the best person to say whether a level was easy or not. But the last level was rather hard even for me). Maybe smoothing out the difficulty curve so the last level's difficulty doesn't come out of nowhere could be an improvement, but with such a short game it really doesn't matter much. As for the controls, in my opinion they were very tight and felt really nice. My only problem is the wall jump sometimes wasn't very responsive, sometimes my character just wouldn't wall jump for some reason, but it didn't happen that much and wasn't an issue until the last level. But quite enjoyable for such a short and simple game!

  • @grRossi
    @grRossi Жыл бұрын

    Nice game! It took me 11 minutes and 54 seconds to beat. The controls are great, but the wall jumping feels a bit off. I ended up pushing the opposite direction after touching the wall and not getting a wall jump because of it a bunch of times, even after realizing the problem it just feels natural to push the direction you want to go so it was hard to adjust. The last level was by far the hardest, but after I realized I could wall jump from the piston it made it a lot easier. If there was a level teaching the player to wall jump from the pistons before it would have made the last level easier to beat I think.

  • @wolfie-_-ranger7932
    @wolfie-_-ranger7932 Жыл бұрын

    It's got a good gimmick to it, and you could definitely make a "Time Tower 2" with taking what you learned from this game and improving on it. Such as making multiple Levels, Improved sprites and faster animation, some more interesting Level design, and a Sprint option (Since the way the character moves is kinda unbearable). If you're able to improve on what you have and add some extra "oomph" to it, it has the potential to be a popular game in the Speedrunning Community.

  • @Hollowdude15
    @Hollowdude15 Жыл бұрын

    This game he created was so cool and increadible video man :]

  • @wazaDev
    @wazaDev Жыл бұрын

    Awesome video really cool game. For your gears you can check out this tutorial by CG matter where you can render 3D models into somehow convincing Pixel art without reducing the output resolution

  • @cerastes3661
    @cerastes3661 Жыл бұрын

    This was sick man! The abyss yearns for us all

  • @woopslap
    @woopslap Жыл бұрын

    Really good storytelling.

  • @ChaoticKittyUwU
    @ChaoticKittyUwU Жыл бұрын

    this looks like a really cool gam. I haven't played it (yet) but it looks good and I think It could work well as a 'foddian' . A foddian is a game where no amount of progress is guaranteed and you can fall down very far. If that's not what you wanted out of the game then that makes sense but personally I think that it could be good.

  • @redacted8913
    @redacted8913 Жыл бұрын

    The way the gears and crushers look reminds me of original DS games

  • @williamtpenningtonart
    @williamtpenningtonart Жыл бұрын

    Your subtle sense of humor always gets me.

  • @church_c_urchin
    @church_c_urchin Жыл бұрын

    I personally really liked the background and it’s motion, very contrasting, but in a good way in my opinion.

  • @terrierdeveloper
    @terrierdeveloper Жыл бұрын

    Wow! great video man

  • @Comedy_haha
    @Comedy_haha Жыл бұрын

    All Geared Up is definitely one of my top 5 mario party ds minigames.

  • @liber2350
    @liber2350 Жыл бұрын

    I really hope that someone manages to make a level editor for this, it looks really promising!

  • @mdbgamer556
    @mdbgamer556 Жыл бұрын

    I think for such a simple isea of "10 seconds", Time Tower is a very interesting idea for a game based around that. Perhaps you could create a sort of sequel that fixes a lot of the problems of the original, and maybe fleshes it out a lot more since you'd have more time to hammer away at it.

  • @mrlucidss
    @mrlucidss Жыл бұрын

    Honestly I really enjoy this game. one nice thing would be a reset button to reset time and start you from the first area

  • @chefj523
    @chefj523 Жыл бұрын

    Bro I had this idea for Super Mario Maker. Basically there's a 10second timer and 10 sections with a checkpoint right before time runs out and you just have to get through them all until you get to the flagpole

  • @KryyssTV
    @KryyssTV Жыл бұрын

    I too found that for bizarre reasons we become experts at the games we make. My first ever game was released last year in summer as a beta with most of the content, I knew it was tough so I wanted to await feedback before finishing it up. Most players were getting absolutely hammered yet others were cake walking it. I found the issue was based upon people being super aggressive in a game where there is no incentive to defeat enemies who are constantly respawning anyway. 6 months were spent adding systems to mitigate the difficulty for psychotic players who were basically playing the game in a way contrary to how it was intended. The lesson? Playtest early and frequently get fresh eyes on the game because difficulty is very hard to predict.

  • @puzzlick7088
    @puzzlick70887 ай бұрын

    I like the art style, it kind of reminds me of flash games, but in a good way

  • @mqgawario8722
    @mqgawario8722 Жыл бұрын

    Imagine if there was a reward for completing the game in under two minutes, like a sort of Za Warudo time stop, and there were extra levels (10 - 20 bonus levels) that revolved around this

  • @xenon3759
    @xenon3759 Жыл бұрын

    The mario party ds music in the background is really nostalgic lol

  • @EricSchles
    @EricSchles Жыл бұрын

    got to the last level. Way too hard. Good job!

  • @foggydude
    @foggydude Жыл бұрын

    I was wondering if you're gonna make a video about it, rated it when the jam was still going!

  • @grabooba
    @grabooba Жыл бұрын

    I find it funny how I speedrun your other games but hate the one you made for speedrunning

  • @smittynp6362
    @smittynp6362 Жыл бұрын

    Fun Game, just got a 1:20.1 tough to nail that last cycle to beat your time, but i definitely like the controls!

  • @mrdollyman5675
    @mrdollyman5675 Жыл бұрын

    I love how the ability to jump for an additional second after leaving a platform is called “coyote”

  • @johnsimpsen5
    @johnsimpsen5 Жыл бұрын

    I loved that mini game in mpds

  • @vortockcity6283
    @vortockcity6283 Жыл бұрын

    You're such an underrated youtuber.

  • @DangerDurians
    @DangerDurians Жыл бұрын

    The art style is rather reminiscent of some ds games I’ve played

  • @PxlPlyr
    @PxlPlyr Жыл бұрын

    You should ad a level editing feature+importing it would be kindof like mario and it would be really cool!

  • @kikolektrique1737
    @kikolektrique1737 Жыл бұрын

    this channel is gold

  • @sebastianwardana1527
    @sebastianwardana1527 Жыл бұрын

    tell me its prerendered art! i love this! dude... duuuude!

  • @FaeTheMf
    @FaeTheMf Жыл бұрын

    Definitely one of the most gaming games of all gaming time

  • @Pleasant_duck
    @Pleasant_duck Жыл бұрын

    I had this idea for a game but I can’t program so I’m putting it here. It is a 2d platform with no checkpoints just constantly going up/left to right and if you don’t get to a certain point fast enough you get sent back to the beginning. There is also a fun feature where the controls are changed to random different keys every 20 seconds and every key does something different! May it be jumping, grappling, teleporting in the direction your holding, swapping gravity, instantly resetting you, or giving you more time. It would be a really hard rage game and if you want you could make it so that there are platforms you can jump on that all have different timers for when you can go on them or when you cant but not show you when they go off so you just have to guess! Just make it as annoying and infuriating as possible! (Ps if you make this I want 30% of the profit 🙃)

  • @cabbagebutterfly800
    @cabbagebutterfly800 Жыл бұрын

    "i actually quite like some of the levels" same energy as the barber saying it's a nice haircut after giving it to you

  • @gigawooper2733
    @gigawooper2733 Жыл бұрын

    Your outlining on the character makes me cry

  • @donlasagnotelamangia
    @donlasagnotelamangia Жыл бұрын

    first run time: 8m36s That last level was tricky! Are there supposed to be two paths with the top one being faster? For some reason I thought the lower cogs were just a death trap so I just ended up managing to beat that level by yoloing the top path, lol. BTW, for the most part the character control felt very nice. I think the 'floatiness' is just due to the lack of sfx and small visual details (particle effects, more dynamic animations, etc).

  • @xaius4348
    @xaius4348 Жыл бұрын

    8 minutes 27 seconds first run, and probably 7+ of that was the last section. It's hard to navigate the end when you aren't given time to observe the level cycle or extended vision. As a lover of platformer games, the controls felt solid, though something was bothering me slightly... It might be the animations or sounds, and not the controls themselves. Either that or how the initial movement to the side and turning directions feels. And yes, I do actually like the background, it's nice. The tileset isn't distracting at all, but the player character and checkpoints do stand out a bit. I guess it's sort of a good thing to have the player character stand out from the rest of the art though. I would say that overall the art is rather good, all things considered. What I would change? Very minor thing, but despite re-touching a checkpoint resetting the clock, standing at the clock doesn't stall the timer after your initial respawn. Also, I'm not positive that this is a good idea, but a way to examine levels would be nice, perhaps a button that allows you to stop time and plan out your approach (Perhaps that adds to the time aesthetic, or perhaps it detracts from the frantic motivation the game creates, unsure)

  • @triangltriangl
    @triangltriangl Жыл бұрын

    Reminds me of a game on switch i used to play with my dad called ten second run returns

  • @DeepFriedOreoOffline
    @DeepFriedOreoOffline Жыл бұрын

    I went to try your game to give you some tips on how to make it better for speedrunning, and all I can really say is that it's not... lol. There needs to be a button that allows the player to reload to the last save point when they realize they are screwed. If for no other reason, for the very first checkpoint that doesn't have a clock and if you mess up the jump you have to reload the game because: the timing of everything is still not accurate. When I got to the last area, every life I was hitting the gears at a different spot. Sometimes the character would land into a wall slide and all I could do at that point is let him get sucked in cause that instantly ruins the timing of trying to get to the platforms, which are also very inconsistent. It may be right theoretically according to the math, but something is wrong with the way those timers sync up with the 10 second death counter. Which would become a bigger issue if the player could reset whenever. There needs to be a way to reset the cycle discreetly when the player dies. For a Ludum Dare entry tho it's really good!

  • @a_a0911
    @a_a09118 ай бұрын

    I like the way you use godot

  • @JuhoSprite
    @JuhoSprite Жыл бұрын

    Personally I quite like how the visuals turned out, it just has an old ds game type vibe because of the rusty graphics and all the imperfections.

  • @Povilaz
    @Povilaz Жыл бұрын

    Very interesting!

  • @nemene8585
    @nemene8585 Жыл бұрын

    2:40, state machines is what you want to use here instead of huge if statements

  • @liviawannavibe
    @liviawannavibe Жыл бұрын

    Wonderful game you got there, just wanted to report something, when I tried to restart while in the death animation, my browser began freezing up and crashed. My pc sure ain't the best, but I think it can handle most browser games. Just wanted to tell you

  • @catsul9420
    @catsul9420 Жыл бұрын

    The mario party ds musics on background hits different

  • @FlorissMusic
    @FlorissMusic Жыл бұрын

    got it down to 2:56 then gave up, what an annoying game. loved it!

Келесі