I Made Minecraft in 24 Hours

Поделиться
HTML-код
  • Опубликовано: 26 фев 2020
  • Can I make Minecraft in one day without the internet?
    So I was bored and decided to bust out the good ol' unity game engine and see how just hard it would be to create the classic blocky voxel sandbox game. To make it interesting and really test my skills, I wasn't allowed to access any external resources/tutorials/code.
    → Download for some reason: trickshotlabs.itch.io/minecra...
    → Download the source: github.com/samhogan/Minecraft...
    → Twitter: / samhgames
    ----MUSIC-----
    → "Funky Monkey" & "Out of Pentatonic Scale" by Antti Luode
    → "Mirrorball" & "Emotional Wilderness" by www.purple-planet.com/
    → "Break Out" & "Blam" by DST - nosoapradio.us
    I started off with basic terrain generation, using cube gameobjects arranged in a grid, whose heights are varied by a perlin noise function. This, however, led to not great performance, but luckily I knew of a way to significantly optimize things.
    This was using terrain chunks - which is what the actual minecraft does as far as I can tell. This meant using voxel data to only build faces of blocks that are facing air blocks. And because the voxel data is 3D, it's possible to have much more interesting procedural terrain generation, like caves, overhangs, trees, etc.
    It's super fun to play around with the different noise functions and see what type of terrain is generated. I ended up doing some simple stuff which looks pretty good: A base layer of simplex noise at a large scale + another layer at a smaller scale that is multiplied by yet another layer for terrain variety. This is the height map. Then 3D simplex noise cuts pieces out to create cave systems.
    Procedurally generating trees and water were both a little tricky. For trees, I used a perlin noise value at each chunk coordinate to determine how many trees would be in each chunk. Then, a random number generator seeded with the chunk's coordinates was used to build the specific trees. This way, the exact same random numbers are produced each time for a specific chunk, and the same trees are generated.
    Water had to form around the terrain, so you don't have weird stuff like finding water when you did straight down. What I ended up doing was creating a separate mesh for the water. To build it up, just loop through each xz coordinate in the chunk, for each starting at the max y position and move down through the voxel data, checking if land exists. If the water level is reached before the first land block, build a square at the water level.
    There's some boring stuff cut out of the video, like optimization. I did things like add an object pool for reusing terrain chunks and add a timer to load chunks one at a time instead of all at once. The performance is still not great, which is mostly due to all the noise function calculations. This could probably be fixed with multithreading, but there's no way I could figure that out without internet help.
    I finished this project off when an inventory, a skybox, and some graphical improvements. The total elapsed time from start to finish was about 14 hours, and the total time I spent actually working on it was around 11 hours. This was minecraft in 24 hours with #Unity3D.
    --- Other Minecraft Programming Challenges ---
    → "Coding Minecraft in One Week - C++/OpenGL Programming Challenge" by Hopson - • Coding Minecraft in On...
    → "Minecraft in Unity 3D [Flashing Images] - One-Week Programming Challenge" by Shane Beck - • Minecraft in Unity 3D ...
    → "Coding Minecraft in ONE DAY (Timelapse) | Unity3D" by TechBox - • Coding Minecraft in ON...
    → "Creating Minecraft In 5 Days" - • Creating Minecraft In ...
    hey notch can I get my piece of that minecraft $ ???
  • РазвлеченияРазвлечения

Комментарии • 22 тыс.

  • @btarg1
    @btarg1 4 года назад +5355

    The no Stack Overflow thing is a bit evil, even pros don't code by themselves.

    • @SamHogan
      @SamHogan  4 года назад +658

      yeah... probably not doing that again

    • @fossforever512
      @fossforever512 4 года назад +130

      I rarely use stack overflow to code? I think most people primarily use it to deal with weird specific language/engine/IDE features right?

    • @elijah4973
      @elijah4973 4 года назад +27

      @@fossforever512 Yeah

    • @the8flo1
      @the8flo1 4 года назад +59

      No documentation is probably worse...

    • @fossforever512
      @fossforever512 4 года назад +51

      qvindicator I mean, it depends if you know exactly what the code does, boilerplate code for example, why write it yourself over and over again when you can just copy and paste it? Saves time
      Other than that tho, I mostly agree, copy and pasting code is more useful for the tinkering stage when you’re learning the technology, but once you actually want to implement something real documentation and writing your own code is definitely a better option

  • @weatherboyj7788
    @weatherboyj7788 4 года назад +414

    Now this is how to play minecraft with shaders without breaking your pc.

  • @overratedprogrammer
    @overratedprogrammer 2 года назад +82

    Everyone who makes an mc clone always has moon gravity and instant mining. I think these are pretty important to what makes mc, mc. It's enjoyable to navigate the world in mc. Very smooth

    • @FeeshUnofficial
      @FeeshUnofficial Год назад +6

      That's why I really like the Minecraft clone 4d miner. It's basically just Minecraft's basic physics but in 4 dimensions

    • @KhatabRobotics06
      @KhatabRobotics06 8 месяцев назад +2

      wish Minecraft

  • @julakentitycraft6862
    @julakentitycraft6862 2 года назад +89

    The graphic is so cool,i love how the dynamic shadow looks like

  • @mareksamuel6972
    @mareksamuel6972 4 года назад +7809

    This is much better than all Minecraft clones flash games

    • @polisz8605
      @polisz8605 4 года назад +32

      @MareCZeek 00 To be continued.... to twój najlepszy film.
      Bardzo fajny i śmieszny

    • @MisterPogman
      @MisterPogman 4 года назад +60

      MareCZeek 00 not really

    • @fish9468
      @fish9468 4 года назад +87

      Why do you, use commas like that

    • @sweet_krona
      @sweet_krona 4 года назад +46

      @@fish9468 because in some languages (for example, Russian) you must use a comma before "than", maybe he did it out of habit

    • @Kitulous
      @Kitulous 4 года назад +26

      @@sweet_krona yeah, and apparently the OP's native language is Polish, which is very similar to Russian.

  • @saintspoon
    @saintspoon 4 года назад +1870

    it looks like one of those games that are called "MineBlock 3D World"

  • @kakugeiikkikomori-iko7775
    @kakugeiikkikomori-iko7775 2 года назад +7

    Thank you for including the code you wrote. It will be useful to figure out how Minecraft generates its chunks.

  • @xsalixartz59
    @xsalixartz59 Год назад +11

    This is actually really fun, cool, and amusing to watch despite the fact that I failed every IT class I took (unless we were specifically programming)

  • @9nikolai
    @9nikolai 4 года назад +2207

    "Only looked up two things"
    His search history:
    "How to code"
    "How to code a Minecraft knockoff"

    • @blockmangoproplayer6201
      @blockmangoproplayer6201 4 года назад +40

      The graphics in this game is better than minecraft

    • @colbyhowto8535
      @colbyhowto8535 4 года назад +21

      no

    • @ay-leck1369
      @ay-leck1369 4 года назад +125

      @@blockmangoproplayer6201 In terms of lighting, yes. In terms of pretty much everything else, no.

    • @kissinglunacy
      @kissinglunacy 4 года назад +6

      block man go pro player no

    • @kissinglunacy
      @kissinglunacy 4 года назад +3

      EGG TV no

  • @EnergiaRocket
    @EnergiaRocket 4 года назад +21461

    N... n... no Stack Overflow?
    Watch out guys, he must be some kind of god.

    • @funtimes8048
      @funtimes8048 4 года назад +185

      We found god 🎉🎊

    • @litt1534
      @litt1534 4 года назад +186

      What is stack overflow?

    • @usmanmemon
      @usmanmemon 4 года назад +423

      Just a place which makes your programming life easy.

    • @thecodingfoundation
      @thecodingfoundation 4 года назад +234

      @@funtimes8048 wut? StackOverflow is free my dude. Completely.

    • @boxifymc4503
      @boxifymc4503 4 года назад +55

      Mehdi samaeian you’re talking about stack overflow teams and we’re talking about stack overflow q and a

  • @LightDeveloperRU
    @LightDeveloperRU 7 месяцев назад +1

    This is so... relaxing...
    I love the graphics, it's so stylish!

  • @jadenyuki6991
    @jadenyuki6991 2 года назад

    BRO, THIS IS AWESOME! I had to subscribe. So cool!

  • @deepnoob3133
    @deepnoob3133 4 года назад +386

    Minecraft without bedrock now we really dont wanna dig straight down

  • @soulplexis
    @soulplexis 4 года назад +21263

    "Mom can I buy minecraft?"
    "No"
    "Fine. I'll do it myself."

    • @extrapathos
      @extrapathos 4 года назад +355

      Oh, a twist!

    • @timioged9294
      @timioged9294 4 года назад +516

      And thats the birth of *”SURVIVAL CRAFT 3D”*

    • @csivaszregallakatos8738
      @csivaszregallakatos8738 4 года назад +108

      it myself: *spreading legs*

    • @emircanball4994
      @emircanball4994 4 года назад +98

      Minecraft at home:

    • @extraps.7289
      @extraps.7289 4 года назад +111

      “Mom, can I have Minecraft”
      “No, we have minecraft at home”
      “Oh hell nah”

  • @Hollowdude15
    @Hollowdude15 Год назад +1

    Awesome video and I appreciate you making minecraft in 24 hours man :]

  • @kelpeee3275
    @kelpeee3275 4 года назад +810

    Love that the character is just casually a bean

  • @RotmgTrollerFan
    @RotmgTrollerFan 3 года назад +1802

    This looks like one of the free games in the google play store named “FREE 2020 CRAFTING SURVIVAL BLOCK OPEN WORLD GAME”

  • @breezeedits
    @breezeedits 2 года назад +2

    1:11 you got me there

  • @Miss_yumiko231
    @Miss_yumiko231 Год назад

    Epic mannnnnn❤️❤️ Crazyyyyyy !!!

  • @data6874
    @data6874 4 года назад +8445

    So this is how people made the fake Minecraft games in google

    • @html_izzy6562
      @html_izzy6562 3 года назад +324

      Right 😭 but why would they waste this much effort on a game no one will play

    • @alephanull1953
      @alephanull1953 3 года назад +240

      @@html_izzy6562 Because it's *FREE*
      I admit, even I installed them for this very reason

    • @vivadrags
      @vivadrags 3 года назад +50

      ItsThatCoolKid HT but u can get cracked minecraft to play single player lol

    • @Pistonnnnn
      @Pistonnnnn 3 года назад +90

      @@vivadrags even in cracked mc you can play multiplayer, But servers are completely limited

    • @whereszayb2695
      @whereszayb2695 3 года назад +8

      @@alephanull1953 APK download on apkvision.com

  • @kylepearson9505
    @kylepearson9505 4 года назад +2605

    Imagine notch watching this like ahhh those were the good days

    • @RealJoePool
      @RealJoePool 4 года назад +18

      He's gay man

    • @user-ne6tp2fl6l
      @user-ne6tp2fl6l 4 года назад +28

      This video is two months old and people are still watching it wow

    • @cabesgg9953
      @cabesgg9953 4 года назад +17

      Notch is dead

    • @MrKngo-cf2fe
      @MrKngo-cf2fe 4 года назад +17

      @@cabesgg9953 Notch isn't dead and I have proof in Google

    • @wtfvxpe
      @wtfvxpe 4 года назад +1

      @@MrKngo-cf2fe bruh 38 min ago?

  • @LUSProductionsOfficial
    @LUSProductionsOfficial Год назад +2

    Give this guy some more reference material, and he can make a pretty good recreation!

  • @littishishstudios8383
    @littishishstudios8383 9 месяцев назад +1

    masterpiece

  • @nicolaphilbin1907
    @nicolaphilbin1907 4 года назад +536

    Therapist: Dirt cave isn’t real, it can’t hurt you
    Dirt cave:

    • @Rosteg2406
      @Rosteg2406 4 года назад +1

      Nicola Philbin cave update

    • @jessxviola
      @jessxviola 4 года назад +4

      @@Rosteg2406 YES WE NEED A DARN CAVE UPDATE! AND A PET UPDATE AND A END UPDATE AND A FOOD UPDATE AND ANOTHER BIOME UPDATE- I have alot in my head...

    • @Usmosis
      @Usmosis 4 года назад +3

      Eva Marie Sawyer you’re comment isn’t funny

    • @LiIyssic
      @LiIyssic 4 года назад +3

      Da cool One your English is

    • @aetherheart1954
      @aetherheart1954 4 года назад +1

      You're comment is funny

  • @Zielllo
    @Zielllo 4 года назад +572

    I can’t believe a company called mojang copied this and made it better

    • @sneakytw1677
      @sneakytw1677 4 года назад +22

      Fr smh my head

    • @user-cv3dr4kt7j
      @user-cv3dr4kt7j 4 года назад +26

      @@sneakytw1677 so ur saying "for real, shake my head my head"?

    • @zekchomenko2927
      @zekchomenko2927 4 года назад +22

      @@user-cv3dr4kt7j yes, that is the joke

    • @forbeminaj2534
      @forbeminaj2534 4 года назад +4

      @@user-cv3dr4kt7j I'm screaming lmaoooo

    • @FDP..
      @FDP.. 4 года назад +4

      @Dev King You are stupid

  • @saifwingamer666
    @saifwingamer666 7 месяцев назад

    I think u should add more details on this game every day/week, so it slowly getting more & more like minecraft (even if u don't want to record it, do it) ❤

  • @creepysteps3687
    @creepysteps3687 9 месяцев назад +1

    It's pretty good, that I would play it! :-)

  • @NJAEpic
    @NJAEpic 4 года назад +13666

    This man made a better Minecraft than all those fake blocky games on Mobile.

  • @Whatismusic123
    @Whatismusic123 4 года назад +2751

    “Left click to place a block, and right click to remove one” bruh, that’s evil.

  • @Alderc1de
    @Alderc1de 8 месяцев назад

    gives me deja vu, love it

  • @cjplayz9387
    @cjplayz9387 2 года назад

    The textures look great!!

  • @nuyxo4849
    @nuyxo4849 4 года назад +2863

    Damn quarantine really getting to people

  • @0GalaxyCat0
    @0GalaxyCat0 4 года назад +1530

    " Rome wasn't built in a day "
    This madlad:
    " *but Minecraft was* "

    • @hinafan
      @hinafan 4 года назад +2

      why are there no replies

    • @Bushwick_Enigma
      @Bushwick_Enigma 4 года назад

      Lol

    • @cxitlyn6058
      @cxitlyn6058 4 года назад +2

      But dis ain’t Minecraft.

    • @ineedabetterpfp2485
      @ineedabetterpfp2485 4 года назад

      Milky Cooki Everybody’s too scared to fight this.

    • @0GalaxyCat0
      @0GalaxyCat0 4 года назад

      @Potato Omg Tysm for yours and everyone's support to this comment

  • @debayush7079
    @debayush7079 2 года назад +1

    He is a genius like he should be hired as a visual developer for minecraft..
    I mean just look at his works.. like what other companies can not do in like 24 years he has done in just 24 hours..
    Hats Off to you man you are awesome..!!

  • @Blue_axolotl440
    @Blue_axolotl440 Год назад

    Love the vid idea and the vid

  • @cesarioudtohan6743
    @cesarioudtohan6743 4 года назад +8663

    Mojang: *We better hire this guy quick*

    • @superdesignendingmanbs-5002
      @superdesignendingmanbs-5002 4 года назад +552

      Microsoft: we better sue this guy quick

    • @lemelyndelacruz4293
      @lemelyndelacruz4293 4 года назад +51

      @@superdesignendingmanbs-5002 hey shut up

    • @loganjames6378
      @loganjames6378 4 года назад +127

      miguel ph you good bro

    • @otterpng
      @otterpng 4 года назад +57

      Since he's using unity and C# this is not accurate but it's a good meme none the less!

    • @micsss_
      @micsss_ 4 года назад +27

      Lmao hire someone who used unity

  • @redzly5071
    @redzly5071 4 года назад +702

    The textures make it look like 3D version of the old Terraria.

    • @JMHVISUALZ
      @JMHVISUALZ 4 года назад +3

      Edge Lord block heads?

    • @seancastillo7031
      @seancastillo7031 4 года назад +4

      3d version of 2d Minecraft

    • @minecraft_kid0097
      @minecraft_kid0097 4 года назад +1

      You know that game wow everyone I know don't know that game

    • @wheaties2388
      @wheaties2388 4 года назад +7

      bro 11 days till journeys end ;-;

    • @Erythr1n
      @Erythr1n 4 года назад

      The game looked like very early Minecraft, with it's weird shaped terrain, the way caves and the world itself generates, it's weird mechanics, etc. It's like Minecraft classic, but with infinite terrain generation.

  • @Casketkrusher_
    @Casketkrusher_ Год назад +9

    This is exactly how Minecraft would've started.

  • @ian-tw5jb
    @ian-tw5jb 2 месяца назад

    4:38 i’m kind of obsessed with the gravity here, it’s like if minecraft had exoplanets that look like earth but have different gravity and stuff

  • @roaringthunder115
    @roaringthunder115 4 года назад +643

    When you can’t get Minecraft
    “Fine. I’ll do it myself”

  • @ignaciodemiguel3683
    @ignaciodemiguel3683 4 года назад +379

    So this is how those minecraft imitation games of google play store are born.

    • @s0up_r882
      @s0up_r882 4 года назад +24

      This is better than most ripoffs. Just some effort and boom get something pretty close, especially since this was made in 11 hours.

    • @EnhancedTrashBin
      @EnhancedTrashBin 4 года назад +7

      @@s0up_r882 And no ads

  • @heyzf
    @heyzf 7 месяцев назад

    you actually got me when you put that fake ending screen

  • @cooldude54289
    @cooldude54289 9 месяцев назад

    Need a part 2

  • @TheRealGuywithoutaMustache
    @TheRealGuywithoutaMustache 3 года назад +2359

    Let's just talk about how amazing it is, that he did this within 24 hours. That's insanely impressive.

    • @L1I58O4H2J158
      @L1I58O4H2J158 3 года назад +70

      you must have a lot of time on your hands that i can see your name every video i go

    • @lukethegodgamer1062
      @lukethegodgamer1062 3 года назад +12

      Beat that Mojang

    • @rainbowspongebob
      @rainbowspongebob 3 года назад +17

      YOUR EVERYHWERE

    • @wlfxy
      @wlfxy 3 года назад +1

      Not really considering minecraft hasn't changed much since its release

    • @rainbowspongebob
      @rainbowspongebob 3 года назад +9

      xWolf x it has..... watch 2009-2020 Minecraft

  • @PompomYourkey
    @PompomYourkey 4 года назад +534

    at least this minecraft has shaders build into it.

    • @Gal-po6lf
      @Gal-po6lf 4 года назад +31

      RTX on

    • @dumbfuckteen3316
      @dumbfuckteen3316 4 года назад +29

      @@MRoach03 no shit sherlock

    • @dumbfuckteen3316
      @dumbfuckteen3316 4 года назад +19

      @@MRoach03 to be smartass? the fuck is that supossed to mean

    • @cweeps7428
      @cweeps7428 4 года назад

      Nice

    • @akhen0950
      @akhen0950 4 года назад

      This is the proof how smol brain u are
      ruclips.net/video/dQw4w9WgXcQ/видео.html

  • @FrZifowk
    @FrZifowk 5 месяцев назад

    This inspires me for game dev

  • @larsbomb4243
    @larsbomb4243 2 года назад

    a high-contrat version of cave game
    looks awesome

  • @noahpohlson7540
    @noahpohlson7540 4 года назад +331

    Knockoff Mobile Game D evelopers: *Write that down, write that down!*

    • @_9maggot
      @_9maggot 4 года назад

      @@bhb_2718 what the

    • @m4x4lfred09
      @m4x4lfred09 4 года назад

      @@bhb_2718 the page says its not a thing anymore
      Also why do that spam
      Sucks to suck

  • @eddyplyz
    @eddyplyz 3 года назад +2191

    This "MINECRAFT" looks like the early days of minecraft

    • @unserve2510
      @unserve2510 3 года назад +41

      But better

    • @timtam3730
      @timtam3730 3 года назад +119

      @@unserve2510 That makes sense considering that early minecraft was made with older software.

    • @randomman4013
      @randomman4013 3 года назад +7

      Yeah because they're old

    • @thisistestaccount7310
      @thisistestaccount7310 3 года назад +3

      2 Day ago 40 likes so good balance!

    • @itzshynx3390
      @itzshynx3390 3 года назад +2

      EddyPlyz Channel kinda

  • @BloxxerBoi_m134
    @BloxxerBoi_m134 2 года назад +1

    Why am I getting vibes of when I used to play minecraft ripoff games lol. Memories came flooding back

  • @sunsets_rise
    @sunsets_rise 8 месяцев назад +1

    You missed:
    The health bar
    The hunger bar
    The bubbles when you go underwater
    The hand
    The skin
    The sound when you place/break blocks
    Mobs
    The cracks when ur breaking a block
    The screen to make a world
    The switch to creative or survival
    Tell me if i missed anything!

    • @Liked_robot
      @Liked_robot Месяц назад

      he fforgor to add minecraft and physics

  • @sirmustardo3471
    @sirmustardo3471 4 года назад +346

    Forgets to add crafting:
    Game title: Minecraft
    Actual game: Mine

  • @SacsachCCABP
    @SacsachCCABP 4 года назад +1311

    This is like Minecraft at its 1 year point. Do 10 more days and it’s a complete Minecraft copy

    • @fokego956
      @fokego956 4 года назад +16

      1 week point

    • @zaferoph
      @zaferoph 4 года назад +31

      @@fokego956 pre release point rather.

    • @BigEpicC
      @BigEpicC 4 года назад +28

      He used unity which makes 3D rendering a lot easier, whereas notch used OpenGL, which requires a lot more work

    • @zaferoph
      @zaferoph 4 года назад +8

      @@BigEpicC and concept takes time too.

    • @bugglemagnum6213
      @bugglemagnum6213 4 года назад

      @@zaferoph you realize that minecraft was in pre release for over a year right

  • @likewastaken0906
    @likewastaken0906 8 месяцев назад

    “Breakmake. An open world 3d platformer.”

  • @uvea2000
    @uvea2000 Год назад

    Sam is like danidev but even chiller

  • @Feldup
    @Feldup 3 года назад +1197

    I love that this channel shows you that programming is 90% fixing errors. It's authentic and funny as hell

    • @legosans926
      @legosans926 3 года назад +14

      It does help to get the "I must commit no errors" thought out of your mind

    • @oiseauquivole4111
      @oiseauquivole4111 3 года назад +9

      Euh what feldup je mattendait tellement pas a te voir ici

    • @itzsonia175
      @itzsonia175 3 года назад +7

      @@oiseauquivole4111 personne ne s'attendait a le voir xD

    • @DarkShadic9632
      @DarkShadic9632 3 года назад +5

      I’ve been coding in Unity for about a week and I thought I was stupid after every mistake I made, watching these sorts of videos has helped a lot with that thought

    • @MrOhioutod
      @MrOhioutod 3 года назад +13

      @@DarkShadic9632 I'm a professional software developer, been programming for years. Not in games, I'm full stack web, but I do homemade game engine stuff in C in my free time for a hobby. Code is just too precise and formalized for our human brains to get it right all the time. And there's too much to know, I am using Google at least a few times per day to look up documentation for an API or examples from a library's getting-started pages.
      In general the sort of errors you make will change over time; as you get more experience your brain becomes good at detecting things that just look wrong so syntax errors (for instance) become far less common. Eventually you get to a point where most of the bigger errors you are making tend to be more 'architectural' -- related to the overall code structure and interface design. (And those often can't really be called 'errors,' just temporarily bad or inefficient design.) But you will always have the occasional day here or there where you do something that makes you feel like the biggest idiot in the world. Just a few weeks ago at work, a Vue app I was building stopped being able to reach its backend API; it was throwing 404s. I lost two hours debugging -- looking at the backend server to see if it was offline, checking the cookies and auth token I was sending over, then just scratching my head and saying out loud "WTF is happening...." Turns out at some point I had inadvertently changed a "-" character in the URL into a "." I call those moments a double-cryer -- you want to cry from relief that you finally found it, and cry from depression that you suck so bad hahaha.
      So long story short, yeah, everybody has moments like that. All you can do is take a ten minute break, take some deep breaths, commiserate with your coworkers, and then move on. And even beyond those facepalm moments, things like accessing the wrong property, passing the wrong variable to a function, or using the wrong loop bounds happen so frequently that programmers I know (including myself) hardly even notice them, those are just part of the act of programming.

  • @Smgfan2000
    @Smgfan2000 4 года назад +227

    Anyone else wanna see how far he can really make it as close as possible? Like I’m curious of how close someone come make Minecraft but it be a Knock off, maybe he can make a series.

  • @C3-08_Zed
    @C3-08_Zed 9 месяцев назад

    Welcome to Sam craft where the only circle thing is you!

  • @debsarkar4893
    @debsarkar4893 8 месяцев назад

    Before this I some dude made a minecraft clone in c++ with opengl framework your also is good btw

  • @thatgaycousin9129
    @thatgaycousin9129 4 года назад +672

    This is how they make those minecraft knock-off games.
    Like, literally, this is what they look like!

    • @Kataro2
      @Kataro2 4 года назад +47

      Just his is better

    • @jpierna7406
      @jpierna7406 4 года назад +29

      True, but this a lot better than most if not all of the other flash rip-offs.

    • @Love-kd4ks
      @Love-kd4ks 4 года назад +9

      He did it in a day what did you expect

    • @juliancilia3488
      @juliancilia3488 4 года назад +5

      Blocks world

    • @lathyadam2487
      @lathyadam2487 4 года назад +7

      This is the best knock-off of minecraft

  • @ShadowsDML
    @ShadowsDML 4 года назад +261

    I remember back in the alpha days when minecraft was more or less this.

    • @mauliqt17
      @mauliqt17 4 года назад +3

      Supernova this is better than the first alpha

    • @mrgold1163
      @mrgold1163 4 года назад +2

      Minecraft alpha remastered

    • @ShadowsDML
      @ShadowsDML 4 года назад +5

      @@mauliqt17 It is, developing a game like this in java is insane even 10 years ago.

  • @INACTIVE12678
    @INACTIVE12678 Год назад +3

    Mom: we have Minecraft at home
    Minecraft at home:
    In all seriousness you did a great job and this looks really good for being done in 24 hours

  • @jonathanliu2476
    @jonathanliu2476 3 месяца назад

    I'm interested in how one tackles concepts like trees and other non-noise-map based terrain objects. If the structure overlaps with multiple chunks, you need to notify the other chunks of their presence. However this gets very messy if you tackle ungenerated chunks, or ungenerated chunks adding structures to already existing chunks.

  • @ZforZine
    @ZforZine 4 года назад +1066

    Me: Only one day? That cant be so difficult
    Sam: And no Stack
    Me: He is to powerful to be kept alive

    • @Killerbee4712
      @Killerbee4712 3 года назад +16

      he must stand trial!

    • @lil.dom.
      @lil.dom. 3 года назад +4

      What is stack?

    • @ZforZine
      @ZforZine 3 года назад +9

      @@lil.dom. stackoverflow, this is a webside from where you can copy and paste other people code

    • @BluesDivinity
      @BluesDivinity 3 года назад +4

      Too*

    • @Messier-gq9yl
      @Messier-gq9yl 3 года назад +1

      *I NEED HIM!*

  • @ajayaplays
    @ajayaplays 4 года назад +466

    You should have added a crosshair in the middle so you can see what block you're looking at.

    • @Vader4499
      @Vader4499 4 года назад +21

      I think the fact that he created it is itself compensation for the crosshair.

    • @beluwuga2229
      @beluwuga2229 4 года назад +4

      When I can’t even make a simple website using

    • @mc.flappingbird1543
      @mc.flappingbird1543 4 года назад +2

      Just look at the middle of the screen

    • @Dylank001
      @Dylank001 4 года назад

      NoobGaming that’s a lot more harder than it looks.

    • @Ronitrocket
      @Ronitrocket 4 года назад

      @@Dylank001 talking with NO knowledge. Literally all you do is make a gui object and place an image of a crosshair in the middle.

  • @daniedits9030
    @daniedits9030 Год назад

    I miss this RUclipsr. His vids were simple yet entertaining.

  • @mr.driver3261
    @mr.driver3261 2 года назад

    Very big skills to make this 🙂👏

  • @audaciousattempts1688
    @audaciousattempts1688 3 года назад +1538

    2010: Making a Minecraft castle in 24 hours!
    2020: Making Minecraft in 24 hours.

    • @yassw_45
      @yassw_45 3 года назад

      Mdr

    • @HOAXYT01
      @HOAXYT01 3 года назад +35

      2030: Making own computer to run Minecraft in 24hrs

    • @alfonso0p628
      @alfonso0p628 3 года назад +20

      2050: create an artificial intelligence that creates minecraft

    • @ryanheise4656
      @ryanheise4656 3 года назад +15

      2100: Playing Minecraft in irl because the ai took over

    • @risesleg6461
      @risesleg6461 3 года назад +11

      2200: teleporting to the minecraft!

  • @jakobbritton17
    @jakobbritton17 3 года назад +2034

    Uh... dude, I don’t think that’s what they meant when they said “Minecraft Speedrun”

  • @manishpoojari9457
    @manishpoojari9457 2 года назад

    3:17
    Sam hogan:- Ho wait 1 second
    RUclips:- *Add pops*
    This really happened.

  • @user-dk2bp8lg3l
    @user-dk2bp8lg3l 8 месяцев назад

    bro ur the best

  • @commonbook
    @commonbook 4 года назад +497

    Minecraft has nothing on “MineBuild”

  • @messwiththeflockyougettheg2382
    @messwiththeflockyougettheg2382 4 года назад +536

    When your parents won’t buy you Minecraft
    “Fine, I’ll do it myself”

    • @isaacturner3622
      @isaacturner3622 4 года назад +4

      Nice Lego Marvel Superheroes reference.

    • @OnionYeeter
      @OnionYeeter 4 года назад +1

      Lol

    • @user-un9lj3qg8v
      @user-un9lj3qg8v 4 года назад

      Parents:Hmmm he has money???

    • @HY-ti4bh
      @HY-ti4bh 4 года назад

      I mean piracy is an option XD

    • @Tanya-yu6mf
      @Tanya-yu6mf 4 года назад

      at this point if smbd can code Minecraft himself, he can easily get a job or a gig and buy Minecraft)))

  • @jasondalton9590
    @jasondalton9590 Год назад

    *This is so cool!*

  • @Teelur
    @Teelur Год назад +1

    Me: "Mom can you buy me Minecraft please?"
    Mom: "You have Minecraft at home"
    Minecraft at home:

  • @funeemunkyTV
    @funeemunkyTV 4 года назад +301

    This dude pretty much made minecraft classic in a day

    • @milomaloney9749
      @milomaloney9749 4 года назад +13

      FuneeMunky if he had done this 10 years ago, he woulda been a billionaire

    • @sammcfadden487
      @sammcfadden487 4 года назад

      Yeah, that was kind of the whole idea of the video, buddy

    • @thanoof
      @thanoof 4 года назад

      No shit sherlock

    • @henrivanhaaften9863
      @henrivanhaaften9863 4 года назад +1

      The first realease is made in 9 hours

    • @facefish1713
      @facefish1713 4 года назад +2

      In fact the First Minecraft was made in only 6 days

  • @falcon2907
    @falcon2907 4 года назад +2551

    Challenge: You have 1 day to create Minecraft 3D with Scratch.

  • @user-yohowdayimeanum
    @user-yohowdayimeanum 8 месяцев назад +1

    Parents don’t want to buy Minecraft so I need to create it by myself

  • @trishitbhattacharya1152
    @trishitbhattacharya1152 Год назад

    Bro please hold I cannot hold that much talent at the same time

  • @maximilianozamoranoc7186
    @maximilianozamoranoc7186 4 года назад +360

    this guy can just make him games instead of buying them

    • @silverfloyd663
      @silverfloyd663 4 года назад +3

      *his

    • @marion7825
      @marion7825 4 года назад +6

      torao chan no he’s right

    • @samhalteman6421
      @samhalteman6421 4 года назад +9

      OnlyCity *himself

    • @placyd
      @placyd 4 года назад +2

      sorry but he still use electricity, he's still paying for something

    • @arjunnath4800
      @arjunnath4800 4 года назад +5

      He didn't say for free

  • @zachary1606
    @zachary1606 3 года назад +1628

    Sam: Did I forget anything
    Viewers: No
    Crafting: ...

    • @DBT1007
      @DBT1007 3 года назад +38

      Yep. Minecraft. Mine+Craft.
      There is no point if we can't mine and craft. It's not Minecraft XD

    • @DBT1007
      @DBT1007 3 года назад +6

      Yep. Minecraft. Mine+Craft.
      There is no point if we can't mine and craft. It's not Minecraft XD

    • @DBT1007
      @DBT1007 3 года назад +6

      Yep. Minecraft. Mine+Craft.
      There is no point if we can't mine and craft. It's not Minecraft XD

    • @trpeli
      @trpeli 3 года назад +85

      @@DBT1007 Yep. Three Comments. Three+Comment
      There is no point of commenting if you're not gonna put 3 of them bitches

    • @Madeeha_shinkoko
      @Madeeha_shinkoko 3 года назад +21

      @@trpeli lmao. Good one but I guess they might've just had some glitch.

  • @Bartosz25
    @Bartosz25 2 года назад

    Great work! 🙂

  • @WavyAndroid
    @WavyAndroid Год назад +1

    damn man nice video

  • @BryceDearden
    @BryceDearden 4 года назад +967

    Everybody’s a gangsta until the tic-tac starts playing Minecraft

  • @Animezjeb_zjebany
    @Animezjeb_zjebany 3 месяца назад

    this looks better.i love that its so nice and not dark.when I look at it, I see the past of the summer of 2017, when everything was clear, the weather was the best, you could go outside every day, even in winter!, you had fun with your friends without worrying about studying. beautiful

  • @sansgirlfriend
    @sansgirlfriend 3 года назад +818

    That one tree be looking like:
    🟩
    🟫
    🟫
    🟫

  • @nekokimo8036
    @nekokimo8036 Год назад +2

    In watching this video, you realise just how much work it takes Mojang team to develop Minecraft as it stands now..
    the creativity and genius behind this work is beyond belief

  • @spyrogyro5982
    @spyrogyro5982 2 года назад

    That's great! Now the next challenge is to add all the features and blocks that minecraft 1.19 have!
    GOOD LUCK 👍

  • @EnderElectrics
    @EnderElectrics 4 года назад +535

    The moment you said "No internet", my video buffered.

    • @thelonewolfproductionz1592
      @thelonewolfproductionz1592 4 года назад +1

      He's yr mum

    • @EnderElectrics
      @EnderElectrics 4 года назад +4

      @@thelonewolfproductionz1592 it's 'ur', not 'yr' lmfao

    • @slabman6262
      @slabman6262 4 года назад +26

      EnderElectrics wait theres broken english for broken english? Lmao

    • @pismemispilavv
      @pismemispilavv 4 года назад

      @@EnderElectrics i guess 'ur' is 'you are'

    • @EnderElectrics
      @EnderElectrics 4 года назад +2

      @@pismemispilavv Ohh... that would make sense, yeah

  • @SA120416613
    @SA120416613 4 года назад +253

    This definitely looks like something you'd see on the app store called "Blockcraft" or whatever

  • @jasondalton9590
    @jasondalton9590 Год назад

    Thank you making Minecraft *Sam Hogan* !

  • @kiritojim35
    @kiritojim35 2 года назад

    Bro your so good at coding the game,mojang will definitely hired you someday

  • @BarnabyCrumplebum
    @BarnabyCrumplebum 4 года назад +357

    There are some haters in the comments saying that this is way worse than Minecraft. Even though one took a day, another took years

    • @natalienewton3711
      @natalienewton3711 4 года назад +45

      and a massive professional team....

    • @ttv1doktorn
      @ttv1doktorn 4 года назад +3

      Sivan the Hedgehog minecraft wasn’t created in todays technical era tho

    • @quickstertwister3256
      @quickstertwister3256 4 года назад +3

      DrFjax Still, it’s pretty amazing to accomplish this in only a day..

    • @zkrope5127
      @zkrope5127 4 года назад +3

      It took 6 days for Markus Persson (known affectionately to fans as “Notch”) to make the first version of minecraft in 2009

    • @buttersmcfly9043
      @buttersmcfly9043 4 года назад +2

      It is worse than minecraft. How does time or amount of developers change that? I'd say it is impressive, but I wouldn't play this

  • @RyanGotReal
    @RyanGotReal 4 года назад +192

    Every Minecraft Rip-Off Game: "First time?"

  • @wilbur.2266
    @wilbur.2266 2 года назад

    Forming water around terrains with so-called meshes is impressive

  • @YASH179
    @YASH179 2 года назад

    Ultimate!!!

  • @TB1611
    @TB1611 4 года назад +261

    At first I thought: "Making a Minecraft-like blocky game shouldn't be THAT hard if you already have an engine like Unity."
    But when you said you're gonna do it without looking up anything on the internet you took it to another level
    well done, you have my respects

    • @AveRay_
      @AveRay_ 4 года назад +2

      weird flex but okay

    • @anthzxny
      @anthzxny 4 года назад +1

      AveRay wEiRd FlEx BuT oK

  • @dotcobaltblu
    @dotcobaltblu 3 года назад +475

    "that's all Minecraft is right?"
    Minecraft: am I a joke to you

    • @ehi_ij
      @ehi_ij 3 года назад +4

      *Yes because what he said was a joke XD*

  • @notbeluga3948
    @notbeluga3948 11 месяцев назад

    Sam Hogan is the best game desiging teacher.

  • @stefangames3337
    @stefangames3337 7 месяцев назад +1

    Me: *Inspect, copy, paste*