AWFUL Hitboxes... - Behind The Scenes Of Classic Sonic

Поділитися
Вставка
  • Опубліковано 14 чер 2024
  • Crazy things happening behind the scenes of the original Sonic games, let's take a look.
    💸Support: ko-fi.com/lapperdev
    🐦Follow me: / lapperdev
    Sonic 1 Overlay:
    info.sonicretro.org/SPG:Overl...
    Thanks to Devin Reeves for research help:
    / mercurysilver
    A GMS2 Sonic fangame framework I recommend:
    / teamorbinaut
    Contact & Freelance:
    lapperdev.artstation.com
    Intro Music by:
    Jahn Davis
    / jahndavis27
    &
    Noah Copeland
    / noahncopeland
  • Ігри

КОМЕНТАРІ • 208

  • @LapperDev
    @LapperDev  2 роки тому +155

    What's the craziest fact in this video?
    New Video: Sonic Blast MANIAFIED
    > ua-cam.com/video/nMWZ-o5CtLM/v-deo.html

    • @trippyanimates
      @trippyanimates 2 роки тому +2

      The sonic 2 boss hit box

    • @ILikeMakeBelieveUnironically
      @ILikeMakeBelieveUnironically 2 роки тому +3

      The sonic sensors, we could do a lot of stuff with that.

    • @Konic_and_Snuckles
      @Konic_and_Snuckles 2 роки тому +2

      Craziest 16-bit Sonic fact: It's a hot mess that's fun to play.
      My life compared to yours: It's hot mess that's fun to play.

    • @COMBOY
      @COMBOY 2 роки тому +2

      The spikes trick in Sonic 1 and the water drop hitboxes were the craziest facts for me. and about how much of a life I have, well, I'd just say I wish I have more time to make my own stuff like you with your research. 😅

    • @AndyHappyGuy
      @AndyHappyGuy 2 роки тому

      Your hand's hitbox.

  • @Triangly
    @Triangly 2 роки тому +277

    Ngl whoever coded your hand hitbox should be fired

    • @KalokesMysteries
      @KalokesMysteries 2 роки тому +13

      They ought to fix it first, then be fired

    • @madrox8
      @madrox8 2 роки тому +6

      well if you think about it, there can only be 2 possible ppl to have coded his hitbox

    • @resurrect404
      @resurrect404 2 роки тому +4

      yooo I’m subbed to u you animations are so good

    • @m3xX_X
      @m3xX_X 2 роки тому

      Wait r u that old UA-camr I used to watch?

    • @screane5739
      @screane5739 2 роки тому

      God was caught lacking

  • @hyperon_ion9423
    @hyperon_ion9423 2 роки тому +107

    I bet the developers _wish_ they had tools to look at the hit boxes like this. A load of these issues look like they exist because the devs had to look at them in a bunch of text boxes with numbers rather than visual images.

  • @alientif0450
    @alientif0450 2 роки тому +51

    Now i understand why i keep bumping into things accidentally, my hitboxes are messed up too

  • @chair3258
    @chair3258 2 роки тому +164

    These videos have godly editing, this deserve the 100 thousand subscribers at the very least. They take long to arrive, but with this quality is well deserved the wait, keep it up!

    • @ABitofEpicness
      @ABitofEpicness 2 роки тому

      In the future when he's at that point, we will all turn back to the old videos and see comments like these, fulfilled.

    • @calupoh7245
      @calupoh7245 2 роки тому

      no it doesn’t. paint drying is just better.

  • @pikajade
    @pikajade 2 роки тому +50

    I think the reason the hitbox of Robotnik's chemical blobs is off-center is so that they are positioned correctly when they first start falling. If you look closely, you'll notice that the position of the projectile is the same as the position of the box when it drops.

  • @Knuckx117
    @Knuckx117 2 роки тому +4

    This explains my intense hatred for those stupid crabs in Metropolis Zone.

  • @ardic23
    @ardic23 11 місяців тому +3

    At 3:27 I'm sure it bothered us all until we realized we had to go further

  • @leandroxbl1
    @leandroxbl1 2 роки тому +4

    Never knew about crouching on the chemical plant boss

  • @Poly_0000
    @Poly_0000 2 роки тому +14

    Man the pacing in your videos has gotten so so much better. Really glad to see you keep improving!

  • @Fluxuation
    @Fluxuation Рік тому +3

    7:40
    CSS players: *maniacal laughter*

  • @azulamazighberber
    @azulamazighberber 2 роки тому +2

    5:35
    "I ported my LUA script to real-life. And check it out!"
    **pink box appears out of nowhere making a sound effect**

  • @blinkachu5275
    @blinkachu5275 2 роки тому +44

    So how would one create a physics system like this? It's awesome you can visualize it, but I think it would be even more awesome if you could create a tutorial to recreate this movement/collision c:
    Yeah there's a Physics Guide but that is only in semi-code and doesn't apply to modern game engines in some cases, and the tutorials that are there on the internet never tackle slopes, only straight movement, and even then it's rarely correct to the Physics of Sonic. I have created movement on straight surfaces like Sonic just fine but slopes are just so difficult to handle with very little explanation as to the how.

    • @LapperDev
      @LapperDev  2 роки тому +6

      The guide is designed to apply to any game engine (I know because I have been adding to it for years!) if there's anything about the guide that confuses you or you feel needs better explaining, please DM the Twitter account @SonicPhysics (me) and I can explain things or make changes.
      But when it comes to slopes, in particular sonic slopes, the main advice I give is make the collision yourself using your own system, don't rely on the built in collision functions or default systems in these modern IDEs, otherwise it's likely to be even harder to do the advanced stuff (and in worst cases, affect your physics in ways you can't control). It'll mean less/faster code, more control, and better results.

  • @sonictag-teamheroes8835
    @sonictag-teamheroes8835 2 роки тому +3

    Absolutely fascinating! I feel a sense of closure I never realized I wanted after seeing the hitboxes for those frustrating crabs!

  • @Foaklore
    @Foaklore 2 роки тому +19

    I always wondered why a hitbox can't just be the same as the model, especially in pixelated games?
    Any answers?

    • @LapperDev
      @LapperDev  2 роки тому +38

      It would have to then check many many 1px squares rather than just 1 big one, saves a ton on processing. These days computers can do it easy, but it is still simpler to code, design, and process with simple boxes.

    • @Foaklore
      @Foaklore 2 роки тому +3

      @@LapperDev Fair enough, I suppose.

    • @themustachioedfish5988
      @themustachioedfish5988 2 роки тому +24

      @@Foaklore Plus, when done right, the player's not actually going to notice if the hitbox doesn't line up 1:1 with the model. And sometimes, if something's hitbox perfectly matches an object's size, the player will say the game's cheap and that they're getting hit when they "clearly" avoided something, or that they should've picked something up but didn't. So, devs usually rig the game slightly in the player's favor so the player thinks the game is fair and not rigged against them.

    • @hi-i-am-atan
      @hi-i-am-atan 2 роки тому +3

      for context, hitboxes are really simple as all they require is comparing the sums of the objects' coordinates and dimensions, i.e. you can tell if two objects are overlapping horizontally by checking a.x + a.width > b.x - b.width and a.x - a.width < b.x + b.width. or, in other words, by checking if a's rightmost edge is to the right of b's leftmost edge, while its leftmost edge is to the left of b's rightmost edge
      then you just a similar check for the other dimensions and bam, you can now tell if a and b are overlapping with only a handful of checks and instructions. checking for overlapping pixels has nothing so elegant, unfortunately

    • @COMBOY
      @COMBOY 2 роки тому +1

      Making hitboxes being the same as the sprites would make the game coding much difficult than they need to be, and also putting too much pixelated hitboxes would cause it to lag a lot. That's why it's recommended to make collisions as close as possible without using too much hitboxes.

  • @LetsPlayKeldeo
    @LetsPlayKeldeo 2 роки тому +5

    Man Id love a sonic 3 video like this ! Keep up the good work

  • @BaneStudio
    @BaneStudio 2 роки тому +4

    Ngl, collisions are EXTREMELY frustrating to work with when creating a Sonic/Sonic-Esc game! 🙄But this video is so eye opening, and here I thought Sonic's slope physics were perfect!

  • @Vexcenot
    @Vexcenot 2 роки тому +5

    That intro looks amazing.
    Just a little too loud espescially in contrast with your quieter and gentle voice. Got Lappy jumpscared

    • @LapperDev
      @LapperDev  2 роки тому +1

      Apologies! Will try adjust better in future.

  • @CalzoneB
    @CalzoneB 2 роки тому +1

    I'm guessing the Big ring hitbox in Sonic 1 is long vertically while centered to make it appear that you are jumping through the ring, and not collecting it.

  • @yousefslimani99
    @yousefslimani99 2 роки тому

    Thank You Bro For Discovering My Favorite Classic Sonic Games Hitboxes!! I Appreciate That!!

  • @shadowfoxxie7182
    @shadowfoxxie7182 5 місяців тому

    this was actually really useful, right now im developing a sonic framework in GMS2 and i was struggling to understand some sections of the physics guide!

  • @Planeawesomeness
    @Planeawesomeness 2 роки тому +2

    I had no idea you should crouch to avoid the chemical plant boss attack, this will make fighting that boss much easier, thank you

    • @fransiscayulianita68
      @fransiscayulianita68 2 роки тому +1

      An even easier strategy:
      When he first appears just jump at him 8 times before he gets to do his attack and go to the left/middle before you fall into the water.

  • @Sly88Frye
    @Sly88Frye 2 роки тому +4

    This was quite honestly very fascinating to see. I'm under the impression that you really studied this stuff. I tried studying python years ago and I made some progress but then unfortunately my medication for my ADHD had just gotten so expensive I couldn't afford to keep spending as much as I had to every month to get it so it was hard to focus and a class I should have completed years ago I am nowhere close to done.
    But the fact is I find this kind of stuff to be fascinating. Maybe I could find a way to set some time aside to really learn this stuff too. Growing up I've actually wanted to design video games but I just hadn't really had the confidence in ability to code or design them. The closest thing I can say I am done is make entire campaigns on the starcraft campaign editor and used the tools within that campaign Editor to make there be dialogue between characters and cause conditions to trigger actions to happen not just victory in the feet but various other actions that would allow you to progress on the starcraft mission.
    Well anyways, this was really awesome to watch so I'm the subscribing and curious about a whole lot more

  • @foojo9
    @foojo9 2 роки тому +3

    I’d love to see a part 2 with Sonic CD and Sonic 3&K

  • @UltraCenterHQ
    @UltraCenterHQ 2 роки тому

    I love Overlay activation sound effect, because it kinda sounds like a vine boom

  • @RikouHogashi
    @RikouHogashi 2 роки тому

    I like useing the term "Hurtbox" when dealing with boxes that hit you instead of hitting the foe to differenciate the term hitbox ive seen this consept in fighting games all time time its nice to finally see it in platformers especialy in Sonic games

  • @TheZMasterOfficial
    @TheZMasterOfficial Місяць тому

    This is an eyeopener to many weird things possible in the classic games

  • @costelinha1867
    @costelinha1867 2 роки тому +1

    And me complaining that the little game I'm making while learning Python have messy hitboxes, but then you remind me of the evil robot crab of Metropolis.

  • @HavingFunTimes
    @HavingFunTimes 2 роки тому

    This is an amazing video
    Intriguing thumbnail, great writing, and extremely high skill editing!!!!! Please make more like this!

  • @aluminum8160
    @aluminum8160 2 роки тому +1

    "In theory if there is a single pixel gap between 2 objects, sonic can get in there"

  • @AGwolf2097
    @AGwolf2097 2 роки тому

    commenting at 0:35 into the video. I've played these games from the day they were first released; I'm not a speed-runner, I don't actually have personal or intrinsic knowledge of the code and physics engine at a programming level, but my navigation of the games is almost entirely intuitive muscle-memory all these years later...
    I'm looking forward to see what you have to share with this, and I already know that I'm gonna be screwing with this collision overlay tonight when I'm done with household chores :D

  • @CanalDaZoeiraBrasil
    @CanalDaZoeiraBrasil 2 роки тому +1

    Bro, that's a lot of crazy stuff I didn't know about the hitboxes. I wonder if the hitbox oddities still are present in the mobile remake of the game (like the Metropolis' crab or Chemical Plant's boss).

    • @VirtuaVirtue
      @VirtuaVirtue 2 роки тому +1

      probably not because its a custom engine if im correct

  • @Brucifer2
    @Brucifer2 2 роки тому +2

    I am 30 years old...and i had no idea crouching keeps you safe from the Chemical Plant boss drop.

    • @LapperDev
      @LapperDev  2 роки тому +1

      I don't blame ya, it's not exactly intuitive lol

  • @dededethesuperstarwarrior
    @dededethesuperstarwarrior 2 роки тому +1

    Amazing!

  • @LunaPrincessNinjato
    @LunaPrincessNinjato 2 роки тому

    I learn so much and got an understanding to how these things work.

  • @SherlockSMasters
    @SherlockSMasters 2 роки тому

    About the Metropolis zone it is really annoyed by asteron ,the crab with a long hand and also the grasshoppers but then that one day I literally speedrunning without getting any damages

  • @niksooxyz
    @niksooxyz 2 роки тому

    Damn, sometimes the youtube algorithm doesn’t miss. I’ve fallen in love with your editing style and I’m pumped for the sonic 3 video! You’ve got a new sub pal

  • @vertz1515
    @vertz1515 2 роки тому

    Man, you’re criminally underrated

  • @rhinuu045
    @rhinuu045 Рік тому

    your editing is crazy man

  • @san9-943
    @san9-943 2 роки тому +3

    I think Sonic can tank the boss attack because of the spikes on his back

  • @SunnyQuantumicity
    @SunnyQuantumicity 2 роки тому

    Cool Video Lapper Keep It up

  • @A_Randomaccount1233
    @A_Randomaccount1233 2 місяці тому

    3:49 Ohhh.. That's why they brought in the insta-shield!

  • @retro3188
    @retro3188 2 роки тому

    Hi. Glad to see you’re back!

  • @vani-lla
    @vani-lla 2 роки тому

    Very good and informative video.
    I’ve played these games for almost two decades, and I never knew the reason why Sonic avoided damage from the chemicals but Tails didn’t.

  • @dmtm
    @dmtm 2 роки тому

    Hello Lapper. Very nice video to show what the hitboxes is for the next generation. ^^

  • @MrEvilbyte
    @MrEvilbyte 2 роки тому

    I have the feeling the blob hitbox is off center, is because it's actually a larger sprite then it looks. Like the blob is the upper/right corner of a 2x2 sprite block. The other blocks simply have no graphics in them. Or something...

  • @winterfoxuk6823
    @winterfoxuk6823 2 роки тому

    Loved this video! More like it please!!!! I thought I knew everything there was to know about sonic on the mega drive! How wrong I was

  • @refeals
    @refeals 2 роки тому

    Really cool to see these mechanics

  • @420jw
    @420jw 11 місяців тому

    For some Reason, Perhaps due to my Greater-than-Standard interest in Technology, Video Games, and Game Design, I easily find this one of my Favourite Videos on your Channel

  • @TheFamilyBovine
    @TheFamilyBovine 2 роки тому +3

    Why have you removed the videos on Sonic Studio? I was so hyped for that, I assume it's cancelled to focus on the channel instead? :/

    • @LapperDev
      @LapperDev  2 роки тому

      Follow the Twitter 😎 @SonicStudioProj

  • @Victorcolongarcia
    @Victorcolongarcia 11 місяців тому

    Love it!!! Where’s the follow up?! 😂

  • @spikerthedragonbear
    @spikerthedragonbear Рік тому

    Lapper is secretly the next TaxMan

  • @DonkeyFilms
    @DonkeyFilms 2 роки тому

    This is very interesting stuff!

  • @crimester
    @crimester 2 роки тому

    I WANT MORE OF THIS

  • @thepotatowithhat
    @thepotatowithhat 2 роки тому

    I thought I was the only one that knew that "stand in the middle of the spike" glitch in sonic 1

  • @kadlerio
    @kadlerio 2 роки тому

    Glad to see I wasn't the only one who found that jump through spikes bug as a kid.
    I very carefully jumped through the section of spikes to the left of the tvs on Green Hill Act 2 thinking there must be some secret, but nope.

  • @Mr.Bouncer
    @Mr.Bouncer 2 роки тому

    Aw hell nah, da crab robot got that janky hitbox

  • @theweeboi9097
    @theweeboi9097 2 роки тому

    The new intro 👌👌

  • @The17thScrub
    @The17thScrub 2 роки тому

    I always knew that damn robot crab was unfair

  • @LetsPlayKeldeo
    @LetsPlayKeldeo 2 роки тому +1

    Awesome ! Cant rember I subscribed to you nor that I turn on notifications but this js the good shit !

  • @javier10541
    @javier10541 2 роки тому +1

    I thought that Sonic surviving that Chemical Plant Boss attack was because he deflected it with his spines...
    Like a hedgehog
    Also Tails doesn't have spines to protect himself so he cannot deflect the attack

  • @TheHeartlessAlchemist
    @TheHeartlessAlchemist 2 роки тому

    Great video.

  • @kobsboy4227
    @kobsboy4227 2 роки тому

    WHY DOESNT THIS HAVE 1000 MORBILLION VIEWS
    UR SO TALENTED U DESERVE WAY MORE
    U CAN EDIT BETTER THAN MOST BIG CHANNELS
    U CAN MAKE GORGEUOUS PIXEL ART BETTER THAN LOTS OF PIXEL ART IN BIG GAMES
    UR AMAZING
    U CAN CODE TOO

    • @Xenon_XTH
      @Xenon_XTH 2 роки тому

      Don't make some non-morbius jokes

  • @hardcoremuffinhead5690
    @hardcoremuffinhead5690 2 роки тому +1

    people are talking about how your hand hitbox is off centered, but why has nobody mentioned that his fingers have no hitboxes? its just one big cube

  • @trippyanimates
    @trippyanimates 2 роки тому

    LEZ GOOO NEW VIDEO

  • @cdigames
    @cdigames 2 роки тому

    I am willing to bet the reason the hitbox for the chemical plant boss is like that is so you get hit if you are jumping at robotnik as he is doing his attack animation, that offset hitbox comes out right at the corner of the container.

  • @mr.foogle3004
    @mr.foogle3004 2 роки тому

    That mega crabmeat is the bane of my existence

  • @realjordantrs
    @realjordantrs 7 місяців тому

    here's my theory about the Sonic 2 Chemical Plant boss:
    Sonic doesn't get hit because he's curling up into a ball, his quills are protecting him. Tails doesn't do that, he just crouches, so he's still vulnerable.
    Is this actually why they did this? Probably not, but I like to imagine it is.

  • @Livithen86
    @Livithen86 2 роки тому

    Make more of this content on other sonic games as well in other games

  • @metal3129
    @metal3129 2 роки тому

    This Guy Is Awesome!

  • @DarkTails256
    @DarkTails256 5 місяців тому

    I could have benefited from that chemical plant hitbox trick 7 years ago 😭

  • @Ardoomus
    @Ardoomus 2 роки тому +2

    hey lapper i just wanted to ask if sonic studio was cancelled? It seems that you have deleted the sonic studio videos off of your channel.

    • @LapperDev
      @LapperDev  2 роки тому +3

      Nope, follow the Twitter account for future updates: @SonicStudioProj

    • @SrIgort
      @SrIgort 2 роки тому

      @@LapperDev well, I have seen this happening before and for sure that's not a good sign. But your content is quite good so I don't mind even if SS ends up getting cancelled 👍

  • @suddenllybah
    @suddenllybah 2 роки тому

    This is really neat.
    the box hitbox is disappearing makes sense, particularly becasue bosses where the boss disappears and reappears and you can embed Sonic in the middle of their hitbox, and you don't hit the boss every frame when you do so.

    • @LapperDev
      @LapperDev  2 роки тому

      That's exactly why, nice point, I should have mentioned it

    • @suddenllybah
      @suddenllybah 2 роки тому

      @@LapperDev
      It is interesting that it happens for Sonic 1, a game that I don't recall having any "teleport" bosses, as well as not having Spin dash, as a way to maybe attack and pass through a boss hit box.
      Sonic 2 had Sliver Sonic, who I would basically beat by spin dashing through when he dashes without spinning.
      and Sonic 3 had the act 2 boss of Angel Island as a "teleporter", so it's not like they didn't have use for the concept in the sequels.

  • @exi_m7074
    @exi_m7074 2 роки тому

    Honestly, most older games were coded
    Extremely strangely.

  • @CrappyBlue
    @CrappyBlue 2 роки тому +4

    some instances of that slope in emerald hill also exhibit the same no-slope-physics traits in their top half that you highlighted in the marble zone slope object, i've noticed. it's very silly rolling on them only to come to a dead stop a couple inches down.

    • @LapperDev
      @LapperDev  2 роки тому +3

      Because of the way it works, the flagging of that EHZ tile means you will be able to walk on it as if it is a flat wall (angle = 90), hence the flying straight up when leaving) when you are already rotated, but ALSO as if it was a flat floor (angle = 0) when you are already right side up.
      I noticed its oddness way before I looked into Sonic games and I always did wonder why.

  • @RealSonGokuDBZ
    @RealSonGokuDBZ 2 роки тому

    Metropolis' Mantis Hitbox.

  • @AceNX
    @AceNX 2 роки тому

    I would love to see a Sonic 3 video!

  • @speedthehedgehog4967
    @speedthehedgehog4967 2 роки тому

    Oh thanks for the Chemical plant thing. Now it would take me less time to beat that boss :)

  • @MrBlitzardo21
    @MrBlitzardo21 2 роки тому

    Don't worry, just putting a comment just to remember that this is my first video i've watched from him.

  • @TsukiZer0
    @TsukiZer0 2 роки тому

    Jumping between individual spikes like:
    ♪ Oh, I have all my fingers ♫
    ♪ The knife goes chop chop chop ♫
    ♪ If I miss the spaces in-between my fingers will come off ♫
    ♪ And if I hit my fingers ♫
    ♪ The blood will soon come out ♫
    ♪ But all the same I play this game cause that's what it's all about ♫
    ♪ Oh, chop chop chop chop chop chop ♫
    ♪ I'm picking up the speed ♫
    ♪ And if I hit my fingers then my hand will start to bleed ♫

  • @nesssans4611
    @nesssans4611 2 роки тому +1

    Not all slopes are created equal
    Slope lives matter!

  • @Skypatroller_BenCD
    @Skypatroller_BenCD 2 роки тому

    05:14 it's also hurt Knuckles (i just tried that with Sonic Tails and Knuckles)

  • @LightEffexor
    @LightEffexor 2 роки тому

    The Shellcracker hitbox is so bad, it makes Dark Souls 2 blush.

  • @sonicsynthwave
    @sonicsynthwave 2 роки тому

    This is a great video. Those badniks are so annoying.
    Well. Yesterday was my birthday. Hooray I guess...

  • @milesprower6110
    @milesprower6110 2 роки тому

    Imagine if instead of the Crab arm to been forget, it was the trajectory of those mantis spinning scythes...

  • @brian93724
    @brian93724 Рік тому

    Thats why i forget things all the time
    *My brain is too small for the memories terrain sensors*

  • @oatmealman1586
    @oatmealman1586 2 роки тому

    I think I know why the chemical blob hitbox is like that. If you watch the way it's used in the attacks the egg mobile will frequently move toward the falling blob and the hitbox could have been moved so that it doesn't hit the egg mobile while it's falling. Essentially, the hitbox may have been moved there to prevent It from destroying the egg mobile when it's dropped and when it's falling.

    • @LapperDev
      @LapperDev  2 роки тому +1

      Interesting theory! However objects arent programmed to interact with eachother by default, only with the players

    • @oatmealman1586
      @oatmealman1586 2 роки тому

      @@LapperDev damn.

  • @jubblyo5943
    @jubblyo5943 2 роки тому +1

    awesome 👌 👏

  • @COMBOY
    @COMBOY 2 роки тому

    I KNEW IT!! I knew that the crab enemy from Metropolis Zone had a big fat hazard hitbox above its head!! 😠 What a cheater!

  • @pinguin4898
    @pinguin4898 2 роки тому

    ah yes, I am not clumsy, just my hitboxes are a mess

  • @coolguy-yz4in
    @coolguy-yz4in 2 роки тому

    tbh i dont get why the caterkiller is the hardest to hit, what i do is just go infront on it and spin-attack the head.

  • @jamesshipley9164
    @jamesshipley9164 2 роки тому

    Expected more Cybershell

  • @thealandude9146
    @thealandude9146 2 роки тому

    the damn metropolis crab1!!!!

  • @thebombingsoda
    @thebombingsoda 2 роки тому

    Oh so I don’t just suck at the game when I always get hit my the crab badniks, stupid hit boxes

  • @BluShiGuy
    @BluShiGuy 2 роки тому

    Whoaaaoow my head's spinning

  • @Lordy-Lord
    @Lordy-Lord 2 роки тому

    We've seen you do so many great videos tackling classic sonic games and their pixel art, what about sonic advance for a try. It's almost classic.

  • @goldenlatias152
    @goldenlatias152 2 роки тому

    You have a voice that sounds like it would be really good for asmr

  • @Daylen523
    @Daylen523 10 місяців тому

    That robot crab from metropolis zone was a dick though. All of the badniks in metropolitan were annoying

  • @dominikcygan2664
    @dominikcygan2664 2 роки тому

    this channel is quickly becoming my favourite sonic based channel

  • @imoved4015
    @imoved4015 2 роки тому

    2:46 (*the pink hitboxes are a lie*)