I Made Minecraft in 24 Hours

Поділитися
Вставка
  • Опубліковано 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

  • @9nikolai
    @9nikolai 4 роки тому +2212

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

  • @overratedprogrammer
    @overratedprogrammer 2 роки тому +85

    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 9 місяців тому +2

      wish Minecraft

  • @julakentitycraft6862
    @julakentitycraft6862 2 роки тому +90

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

  • @soulplexis
    @soulplexis 4 роки тому +21270

    "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”

  • @weatherboyj7788
    @weatherboyj7788 4 роки тому +415

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

  • @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)

  • @saintspoon
    @saintspoon 4 роки тому +1870

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

  • @deepnoob3133
    @deepnoob3133 4 роки тому +386

    Minecraft without bedrock now we really dont wanna dig straight down

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

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

  • @LightDeveloperRU
    @LightDeveloperRU 7 місяців тому +1

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

  • @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”

  • @kelpeee3275
    @kelpeee3275 4 роки тому +811

    Love that the character is just casually a bean

  • @Hollowdude15
    @Hollowdude15 Рік тому +1

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

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

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

  • @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

  • @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

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

    The textures look great!!

  • @roaringthunder115
    @roaringthunder115 4 роки тому +642

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

  • @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

  • @Casketkrusher_
    @Casketkrusher_ Рік тому +9

    This is exactly how Minecraft would've started.

  • @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..!!

  • @EnergiaRocket
    @EnergiaRocket 4 роки тому +21459

    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

  • @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.

  • @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

  • @ian-tw5jb
    @ian-tw5jb 3 місяці тому

    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

  • @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.

  • @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

  • @wilbur.2266
    @wilbur.2266 2 роки тому

    Forming water around terrains with so-called meshes is impressive

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

    I miss this UA-camr. His vids were simple yet entertaining.

  • @Whatismusic123
    @Whatismusic123 4 роки тому +2750

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

  • @kylepearson9505
    @kylepearson9505 4 роки тому +2606

    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?

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

    Sam is like danidev but even chiller

  • @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

  • @data6874
    @data6874 4 роки тому +8442

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

    • @html_izzy6562
      @html_izzy6562 4 роки тому +324

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

    • @alephanull1953
      @alephanull1953 4 роки тому +239

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

    • @vivadrags
      @vivadrags 4 роки тому +50

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

    • @Pistonnnnn
      @Pistonnnnn 4 роки тому +90

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

    • @whereszayb2695
      @whereszayb2695 4 роки тому +8

      @@alephanull1953 APK download on apkvision.com

  • @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.

  • @GiulioVonKerman
    @GiulioVonKerman Рік тому +1

    It's interesting how it has better visuals than the original one

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

    The textures makes me want to play your minecraft more than the original

  • @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

  • @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)))

  • @Anexify.LARRY998
    @Anexify.LARRY998 Рік тому

    I like how in the showcase you just show all the bugs😂

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

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

  • @thatgaycousin9129
    @thatgaycousin9129 4 роки тому +671

    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

  • @SacsachCCABP
    @SacsachCCABP 4 роки тому +1312

    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

  • @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

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

    This inspires me for game dev

  • @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

  • @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 4 роки тому +16

      he must stand trial!

    • @lil.dom.
      @lil.dom. 4 роки тому +4

      What is stack?

    • @ZforZine
      @ZforZine 4 роки тому +9

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

    • @BluesDivinity
      @BluesDivinity 4 роки тому +4

      Too*

    • @Messier-gq9yl
      @Messier-gq9yl 4 роки тому +1

      *I NEED HIM!*

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

    1:11 you got me there

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

    a high-contrat version of cave game
    looks awesome

  • @Zielllo
    @Zielllo 4 роки тому +573

    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

  • @nuyxo4849
    @nuyxo4849 4 роки тому +2861

    Damn quarantine really getting to people

  • @jonathanliu2476
    @jonathanliu2476 4 місяці тому

    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.

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

    some of the world gen is super nostalgic. reminds me of alpha minecraft :,)

  • @sirmustardo3471
    @sirmustardo3471 4 роки тому +346

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

  • @ShadowsDML
    @ShadowsDML 4 роки тому +260

    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.

  • @saifwingamer666
    @saifwingamer666 8 місяців тому

    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) ❤

  • @RainStar_123
    @RainStar_123 Місяць тому +1

    “Mom can I have Minecraft?
    “No we have Minecraft at home.”
    Minecraft at home:

  • @audaciousattempts1688
    @audaciousattempts1688 4 роки тому +1538

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

    • @yassw_45
      @yassw_45 4 роки тому

      Mdr

    • @HOAXYT01
      @HOAXYT01 4 роки тому +35

      2030: Making own computer to run Minecraft in 24hrs

    • @alfonso0p628
      @alfonso0p628 4 роки тому +20

      2050: create an artificial intelligence that creates minecraft

    • @ryanheise4656
      @ryanheise4656 4 роки тому +15

      2100: Playing Minecraft in irl because the ai took over

    • @risesleg6461
      @risesleg6461 4 роки тому +11

      2200: teleporting to the minecraft!

  • @NJAEpic
    @NJAEpic 4 роки тому +13663

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

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

    Very big skills to make this 🙂👏

  • @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 👍

  • @jakobbritton17
    @jakobbritton17 3 роки тому +2033

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

  • @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.

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

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

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

    Idk why but that random only one leaf tree within the finished and fully generated ones made me laugh

  • @SA120416613
    @SA120416613 4 роки тому +253

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

  • @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
      ua-cam.com/video/dQw4w9WgXcQ/v-deo.html

  • @Alderc1de
    @Alderc1de 8 місяців тому

    gives me deja vu, love it

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

    Thank you making Minecraft *Sam Hogan* !

  • @TheRealGuywithoutaMustache
    @TheRealGuywithoutaMustache 4 роки тому +2359

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

    • @L1I58O4H2J158
      @L1I58O4H2J158 4 роки тому +70

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

    • @lukethegodgamer1062
      @lukethegodgamer1062 4 роки тому +12

      Beat that Mojang

    • @rainbowspongebob
      @rainbowspongebob 4 роки тому +17

      YOUR EVERYHWERE

    • @wlfxy
      @wlfxy 4 роки тому +1

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

    • @rainbowspongebob
      @rainbowspongebob 4 роки тому +9

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

  • @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

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

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

  • @creepysteps3687
    @creepysteps3687 9 місяців тому +1

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

  • @BryceDearden
    @BryceDearden 4 роки тому +966

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

  • @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

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

    This can be a great bridge practicing minecraft

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

    Wow this man made mine craft on his own + high graphics lets congratulate this man

  • @stan3677
    @stan3677 4 роки тому +331

    He is literally remaking Minecraft in 24 hours while it took me a year and a half to make my Python turtle move in a straight line

    • @shuhood3763
      @shuhood3763 4 роки тому +12

      I mean he probably has more than advanced knowledge about unity beforehand while you were learning from basics on Python.

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

      Yaaba daaba dooooo

    • @stg1325
      @stg1325 4 роки тому

      @Jacob Gonzales but then whats the point, the only reason i want to make games is cos i want learn to code better with it.

    • @stan3677
      @stan3677 4 роки тому

      Lmao it was a joke. I actually didn’t even try to learn python we just had a lesson about it at school. It’s not something that really interesting for me

  • @dotcobaltblu
    @dotcobaltblu 4 роки тому +473

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

    • @ehi_ij
      @ehi_ij 4 роки тому +4

      *Yes because what he said was a joke XD*

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

    I can watch 10 videos about someone making Minecraft in 24 hours and it still would take me a year to do the same thing.

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

    Great work! 🙂

  • @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 4 роки тому +1626

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

    • @DBT1007
      @DBT1007 4 роки тому +38

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

    • @DBT1007
      @DBT1007 4 роки тому +6

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

    • @DBT1007
      @DBT1007 4 роки тому +6

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

    • @trpeli
      @trpeli 4 роки тому +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 4 роки тому +21

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

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

    Sam Hogan is the best game desiging teacher.

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

    This man is better than other Minecraft copy

  • @compechdev
    @compechdev 4 роки тому +5139

    If you did this 11 years ago, you would be a millionaire
    Edit: I see a lot of you replying with "air", I don't know if that means that I made a typo, and if I did then sorry, English is not my main language

  • @helloimziad7406
    @helloimziad7406 4 роки тому +1314

    Me: Mom I want Minecraft
    Mom: We have Minecraft at home
    Minecraft at home:

    • @nathanmccollough8009
      @nathanmccollough8009 4 роки тому +20

      Technically this Minecraft is Better bc you can add as much or as little as you want to it like a cave update

    • @hweart40
      @hweart40 4 роки тому +8

      Unoriginal

    • @SomeOneWithAHoodie
      @SomeOneWithAHoodie 4 роки тому +5

      Natalia bruhh potatoe

    • @alexus6237
      @alexus6237 4 роки тому +7

      @@nathanmccollough8009 You can add as much you want to the original Minecraft too. With mods!

    • @originalname3358
      @originalname3358 4 роки тому +1

      Zezo Amr I would actually play that lmao

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

    Love the vid idea and the vid

  • @HEHE-rz7nw
    @HEHE-rz7nw Рік тому

    I remember the old minecraft lol,love it

  • @commonbook
    @commonbook 4 роки тому +497

    Minecraft has nothing on “MineBuild”

  • @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

  • @quorbee
    @quorbee 10 місяців тому +1

    I would never be able to do that ever in my whole life

  • @aaaa-fi1dm
    @aaaa-fi1dm 2 роки тому +2

    I was inspired by this video so I also decided to remake Minecraft in unity.
    Here is what I found while I was making it. In your video I saw when you were looking at a block face at a harsh angle unity decided to mipmap that block face. There is a problem with that since you are using a texture atlas the adjacent block textures bleed into the other block textures when unity scales the texture atlas down. I solved this by using a Texture2DArray. Though I still wanted to use a texture atlas because I found it very convenient. So how would you convert the texture atlas into different textures? I found by setting the Texture Atlas Texture type in unity to "Sprite (2D and UI)" allows me to sperate parts of the Texture atlas into different sprites. Then take the sprites into a script and populating the Texture2DArray. Now if you actually want to use the Texture2DArray you will have to create a custom shader that takes the texture id which I just used the alpha color channel to pass it into the shader. You could probably get away by putting it somewhere else like the vertex position since it can only be a set amount of values because chunks are 16, 256, 16 in my case. You could use the other bits and encode the texture id.
    I also, noticed when you are underground the light still bleeds through in lines. You can fix that by changing the "Normal Bias" to 0 in the Directional Light.
    I did enjoy recreating Minecraft in unity but if I was going to do it again I would definitely want to use Unity's D.O.T.S system as terrain generation and mesh creation could be a lot faster.

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

      Glad you shared your experience.

    • @Alderc1de
      @Alderc1de 8 місяців тому

      Woah, did anyone try it yet?

  • @RyanGotReal
    @RyanGotReal 4 роки тому +192

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

  • @sunsetsmusic3792
    @sunsetsmusic3792 4 роки тому +739

    Me: Mom can we get minecraft?
    Mom: We have minecraft at home.
    Minecraft at home:

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

    Minecraft factory: we better hire Sam hogan to help us!

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

    3:39 your methods with no access modifiers is killing me i dont know why 😭😭

  • @cesarioudtohan6743
    @cesarioudtohan6743 4 роки тому +8666

    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