Тёмный

Adding Gameplay to 2D Minecraft 

CodeNoodles
Подписаться 79 тыс.
Просмотров 29 тыс.
50% 1

Опубликовано:

 

27 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 150   
@-mattking
@-mattking Год назад
"although it may not seem like it, we got a lot done in this video" *proceeds to make the game playable*
@abugidaiguess
@abugidaiguess Год назад
*makes the game a game*
@maunoh4659
@maunoh4659 Год назад
You should add block breaking particles, it would give a lot more feedback and be more juicy.
@drumming_cat
@drumming_cat Год назад
another suggestion would be to make block texture rotations like how the stone texture in the game can be reversed around the y axis to give some variation so the stone doesn't look like a pattern. same with deepslate and dirt is rotated in all 90deg increments.
@p-doggo5787
@p-doggo5787 Год назад
Also some buildeing blocks,like doors,trapdoors,ladders...
@User71537
@User71537 Год назад
He should add mobs next like the creeper, zombie and the skeleton, and non hostile mobs like the pig, cow, and sheep, And also make the hunger and health bars work. And the last suggestion I have is to have beds to you can skip the night and make it day…
@nikolozgilles
@nikolozgilles Год назад
ohh yeah give me those juicy crusty particles mmmm yeah 🥵
@yeyeyeyeyeyeyyeyey
@yeyeyeyeyeyeyyeyey Год назад
6:22 I absolutely love how deep the world is! Though with this perspective I think caves could use a little tweaking to make them either more frequent or better connected with each other
@CodeNoodles
@CodeNoodles Год назад
Thanks! I forgot to mention it, but the world's were originally 256 blocks tall, but I changed it to 512.
@Gaming32i
@Gaming32i Год назад
When I made 2D Minecraft, I actually did saving from the getgo. The save file is mmapped directly into the server. I think this actually limited me, though, as it means I can't change the format of chunks too drastically since they're mapped directly to disk.
@CrashDy
@CrashDy Год назад
I feel like ladders would be a super useful feature that can greatly help the player traverse vetically. Simply having it be placed on top of the wall layer seems the most useful.
@ArcadeMystereo
@ArcadeMystereo Год назад
Very nice video! I even learned something new with the biome colour interpolation system. I have a suggestion regarding ore generation, make sure to not adjust the ore vein size until it looks like Minecraft, but until it has around the same amount of drops as Minecraft. Since 2d Minecraft is missing an entire dimension but will probably require the same amount of ores as crafting materials, you need to compensate for the missing ores that you would usually get from the 3rd dimension in Minecraft, either by making the veins bigger or by making the ore blocks drop more ores. But then again, maybe you thought about this too, who knows, I don't. Keep up the great work!
@notyarrs
@notyarrs Год назад
Well you can see through walls in 2d minecraft so he should actually lower it
@ArcadeMystereo
@ArcadeMystereo Год назад
@@notyarrs That's fair, but maybe he could make it so you can only see very little through the wall, so that even with a full strength light source on a wall black, you may only see up to the 2nd block behind it. A similar 2d game I played has something in that direction and it really gives caves that creepy and unexplored vibe.
@cracktusgaming8473
@cracktusgaming8473 Год назад
It's looking great bro. My recommendation is to make it so you hold the items in your hand, like the pickaxe when your mining
@abugidaiguess
@abugidaiguess Год назад
congratulations! your game is now officially Mine! now all you need to do is add crafting and you officially have Minecraft!
@abugidaiguess
@abugidaiguess Год назад
but like actually that's my suggestion, crafting system
@cravonomire9971
@cravonomire9971 Год назад
Oooooh Minecraft noodle is back
@decoy3641
@decoy3641 Год назад
It would be an understatement to say I really enjoy watching your content. I respect the time you spend working on these devlogs, video editing included and I hope all is well!
@brauniktanvandarnamn
@brauniktanvandarnamn Год назад
You can make mobs, structers, villiges, crops, crafting tables, smelting and so you have to smelt the raw ores to get normal ore.
@someonecalledrichardthehuman
Neat, actual gameplay. Most proyects i have seen on RU-vid are just for the sake of a video and never go past a sort of boring "Creative mode" limbo of sorts, i could see myself playing this better than most AAA titles just for the fact that you are actually putting a lot of effort in it rather than just making a demo, never touching it again, and then being like "Ima such good programmer GIVE ME RECOGNITION FOR THIS SH--- RIGHT NOW!!!". Thank you for making this CN Edit: What about adding mobs?
@Autumnly24
@Autumnly24 Год назад
This is such a cool project! I've seen a lot of people "remake" Minecraft, but nobody ever does it in-depth, so it's really really interesting to see someone adding actual content! (I know you're a pretty large channel, and unlikely to notice this, but I'd totally help out with this project if you ever need!)
@sethniflin8285
@sethniflin8285 Год назад
Idea: Add semisolid blocks to the entrances of caves and if you want to translucent walls that would be in a front layer ontop of everything, so you could make pillars in caves or other stuff like that
@asher3311
@asher3311 Год назад
i think the green in the taiga should be a bit darker and possibly a tiny bit bluer
@Solesteam
@Solesteam Год назад
Durability, it seems like those tools lack the beloved feature of degrading over time.
@grapepapa
@grapepapa Год назад
Durability would be rather easy. Interactive blocks (like chests and crafting tables) would be harder but worthwhile.
@nikolozgilles
@nikolozgilles Год назад
Yeah i get what you mean when you say coding save/load features in a game is tedious and time consuming. I made file saving code for 2 games on Scratch, one is a strategy game inspired by Empire Total War, and the other is a Football Manager kind of game. Both are very complicated, and I would say some of the best games of their genre on Scratch, and writing save and load game code for them is a pain because those games use a lot of variables and lists and I have to store them all **in one long string** and also in a way that the game can recognize which numbers belong to which lists or variables. So I made sections for each list and variable that were enclosed in square brackets [ ], and for lists, the entries in each list were separated by tildes, which are these funny squiggly characters: ~. So a list would look something like [ABC~DEF~GHI~JKL~MNO~PQRS~TUV~WXYZ~]. The way the game is loaded off of this big string is that I went over every single character, and each variable and list had a predetermined section that was baked into the game. So for example, the variable for what turn it is will always be the first section in square brackets, and the variable for how much money you have will always be the second section in square brackets, same for lists which would each have a predetermined section number, etc etc. For lists, every entry begins by putting each character together one by one into each entry. So for the first entry in that list it would be A -> AB -> ABC and when when the game hits the squiggly tilde ~, it knows that means it's the end of that particular entry, so it puts that entry into the list, and continues until it has done all the entries. Its an insanely jerry rigged solution but it works
@molycow
@molycow Год назад
Seeing this awesome channel grow is so amazing... Thank you for your work!
@NitinKumar82889
@NitinKumar82889 Год назад
Add water and lava. They would absolutely fill the world enjoyment,Like currently there isn't any sort of danger but the lava will fill it with. Add title screen and the way of saying multiple worlds
@aireyroblox
@aireyroblox Год назад
Super cool! I'm excited to see where this series goes.
@nikolozgilles
@nikolozgilles Год назад
suggestion: water! so we can fish and have a swim
@nikolozgilles
@nikolozgilles Год назад
OMG I DIDNT EVEN SEE THIS VIDEO GET PUBLISHED 😍
@DamariFergusonVids
@DamariFergusonVids Год назад
The Taiga biom and the tree should be darker to be more accurate.
@conord82
@conord82 Год назад
Wow that did not seem like you got just a little done. That was a ton of work and super impressive
@BlazingImp77151
@BlazingImp77151 Год назад
It may be complicated, but fluids could be cool to see (especially if you are digging straight down like that). ladders or platforms from terraria would be a good idea too, to assist with vertical movement.
@AcousticJammTheGamer
@AcousticJammTheGamer Год назад
You should add blocks with different functions, such as how crafting tables allow you to craft or how furnaces smelt items, or maybe even TNT.
@mtgamekid2510
@mtgamekid2510 Год назад
When chunks are loaded, does it search the whole folder or just check a list? Because it seems like if you store which chunks are loaded in a list, it would be able to load new chunks faster. Just a suggestion. Also, awesome project! Keep up the good work!
@jayronbaello3645
@jayronbaello3645 Год назад
I have been watching since the start and im glad your doing the same thing!
@jayronbaello3645
@jayronbaello3645 Год назад
Since the 2nd ever vid btw
@ezbanL
@ezbanL Год назад
Add a combat system, hostile mobs and TNT
@notanerd6838
@notanerd6838 Год назад
its so accurate he even added chunk errors
@lel7531
@lel7531 Год назад
Impressive progress ! Can't wait for the next one
@MichaelBTryn
@MichaelBTryn 10 месяцев назад
Woo! chunk persistence for the win!
@BloxedZ3R0
@BloxedZ3R0 Год назад
7:45 "And the Desert will be more red" *Shows yellow*
@lminimaster6082
@lminimaster6082 Год назад
What about a mild 'fog-of-war'-like system which conceals the ores behind walls by making them look like stone until revealed, otherwise the player can freely see where the ores are on the entire screen.
@Imaproshaman7
@Imaproshaman7 Год назад
Wow, this is really cool. Neat.
@r.l.r.7550
@r.l.r.7550 Год назад
Mobs would be interesting to see.
@octoberdx
@octoberdx Год назад
I think you should try a per-pixel lighting system instead of the per-block lighting system, it'd look a bit more like Terraria's
@CodeNoodles
@CodeNoodles Год назад
I do have smooth lighting implemented, which is per vertex instead.
@The_stupid_AI
@The_stupid_AI Год назад
Lets go codenoodle
@alexleo-wolf4339
@alexleo-wolf4339 Год назад
It's like paper Minecraft, but it's an actual game now instead of a playable demo! Well, not that it's a playable game yet, but it's likely going to have as many features from Minecraft as possible? Also did you seriously make a crewmate.
@leftory684
@leftory684 Год назад
You should add beds so you can skip the night
@LoggyDev
@LoggyDev Год назад
Wow, this is quite an undertaking 😅😮
@Lebyy
@Lebyy Год назад
Loving the videos. How will you break blocks in the background like at 4:16 I get leaving it there for caves but what if someone wants to flatten an area out. You should also allow players to place blocks in the background for things like houses.
@CodeNoodles
@CodeNoodles Год назад
I will be working on that in the next episode. Good question!
@krispyking2450
@krispyking2450 Год назад
working health, hunger, food and armour
@glorpPosting
@glorpPosting Год назад
I think durability and smelting could be cool
@Pestanul
@Pestanul Год назад
i havent brought minecraft, but ill buy this game
@smartside1432
@smartside1432 Год назад
Enemies,villagers,pillagers and warden.
@UltronZX
@UltronZX Год назад
also, ur illumination logic looks awesome. but, how does it get dark when u dig downwards, when actually the light source should be set to the bottom most block u have dug till (since it is in contact with the sky)?
@fatigued
@fatigued Год назад
next video you should add crafting and holding selected inventory item in hand and pickaxe mining animation
@ErebusPlays
@ErebusPlays Год назад
I LOVE IT! KEEP IT UPPP
@lynnwilliam
@lynnwilliam Год назад
I had to write a database page system before and it was hell on earth
@yesntdid
@yesntdid Год назад
Nice video :)
@TitanLordofPizza
@TitanLordofPizza Год назад
seems nice
@ExpiredIDK
@ExpiredIDK Год назад
We can officially bedrock bridge in 2D Minecraft
@FootTwoPerFect
@FootTwoPerFect Год назад
You should add multiplayer!
@Kathen
@Kathen Год назад
Commenting to help with the algorithm :)
@Meowy15
@Meowy15 Год назад
Please publish the game once it is done
@FaiqAbdulsalamov
@FaiqAbdulsalamov Год назад
U should add structures minecraft has a lot like a lot
@Wagnerbaum
@Wagnerbaum Год назад
When you are done with this project will it be available to the public?
@MoreInsane96
@MoreInsane96 Год назад
I would not add the Hunger bar and just keep the health like pre-Adventure update
@miojo157._.
@miojo157._. Год назад
try fixing the way caves generate i think they look way too noisy and tall it doenst look like the normal minecraft spaghetti caves and try to fix those spruce trees too
@iIiLunathiIi
@iIiLunathiIi Год назад
awesome
@DaBlueBird
@DaBlueBird Год назад
You should add in animals.
@nadishaik8523
@nadishaik8523 Год назад
wow thanks for teaching us
@Bombingham
@Bombingham Год назад
something something Terraria
@BromeoWuggles
@BromeoWuggles Год назад
This looks incredible just after a few episodes already, if you release it, will it support mods?
@ergsed
@ergsed Год назад
hi i was trying to make some game in unity 2d and my texture (16x16) is getting blured someone know how to repair this issue?
@CodeNoodles
@CodeNoodles Год назад
I don't use Unity, but that usually happens when your scaling filter isn't set to nearest neighbor.
@tomasbernardo5972
@tomasbernardo5972 Год назад
What texture editor software is that?
@manguy12
@manguy12 Год назад
This is poggers content
@uniderpx3
@uniderpx3 Год назад
Add durability?
@Ryoharator
@Ryoharator Год назад
if finish it the project make a mobile port or take a break and make the mobile port if your willing to do it also create a crafting system and other items and blocks of the game and also combat
@Ryoharator
@Ryoharator Год назад
Oh btw make a updated version of AI learns how to play Geometry dash but its on the main game not your version pls make it when your finish of the mobile version of Minecraft 2d
@blackimpostorisverysussy
@blackimpostorisverysussy Год назад
You should add a menu to remove the black screen
@PenelopeNaomi
@PenelopeNaomi Год назад
Rad!
@glasscannon1231
@glasscannon1231 Год назад
Is it possible to play
@Someone69769
@Someone69769 Год назад
Neat!
@explodingwolfgaming8024
@explodingwolfgaming8024 Год назад
Commenting 4 algorithm
@fletchermed
@fletchermed Год назад
🔥🔥🔥🔥🔥🔥🔥
@aryszin
@aryszin Год назад
Please make new episodes
@7projected
@7projected Год назад
God damn
@KOOL-LIGHT-KOOLIO
@KOOL-LIGHT-KOOLIO 2 месяца назад
Kool guy
@appl3juice166
@appl3juice166 Год назад
@AngFan1
@AngFan1 Год назад
Mobs
@woutervanduin7415
@woutervanduin7415 Год назад
GAMEPLAY
@braderzslotchannel
@braderzslotchannel Год назад
Pop
@scratch_and_stuff
@scratch_and_stuff Год назад
but there is already a game called 2D Minecraft
@JustBlack4
@JustBlack4 Месяц назад
C++
@Latios832
@Latios832 Год назад
try to get idea on terraria its like your game😅😅😅😅😅😅😅😅
@Latios832
@Latios832 Год назад
like add boss😊😊
@LuminosityZero
@LuminosityZero Год назад
balls
@madankd
@madankd Год назад
Why don't you teach people and make money using your skill
@haleysettembre
@haleysettembre Год назад
You should add tool durability
@HelperGuy
@HelperGuy Год назад
You could add durability to tools.
@burningbandit
@burningbandit Год назад
Loving these videos dude, can't wait for more
@liamplamondon
@liamplamondon Год назад
when I see one of your videos I'm always exited
@micahaghedo7610
@micahaghedo7610 Год назад
You should add a render zoom/distance feature!
@CodeNoodles
@CodeNoodles Год назад
I do already. It comes in handy for testing
@micahaghedo7610
@micahaghedo7610 Год назад
@@CodeNoodles oooo nice. My other idea was a way to save your spawn, like a bed.
@TattleameliaMLG
@TattleameliaMLG Год назад
I ADORE this. It looks so cool, really wish I could play it! Do you have any plans to release it when it's finished or at least in a decently playable state?
@Connnnor.
@Connnnor. Год назад
FIRST Edit: I did it. I'm so cool.
@CodeNoodles
@CodeNoodles Год назад
Yes you are!
@Rocky7777v7
@Rocky7777v7 Год назад
Add running, and a water biome, make lava pools for obsidian to make portal and make a 2d nether
@Jiglias
@Jiglias Год назад
the more developed this becomes the more it reminds me of blockheads
@rezdro2345
@rezdro2345 Год назад
this is looking epic!
@vrboneworks991
@vrboneworks991 Год назад
now we need to make 3d terraria
Далее
Adding Jungles, Crafting, and More to 2D Minecraft
8:42
Using Image Recognition to play Mario Party Minigames
13:16
Новый вид животных Supertype
00:59
Просмотров 148 тыс.
titan tvman's plan (skibidi toilet 77)
01:00
Просмотров 4,3 млн
I Made Minecraft, but It's 4D
13:48
Просмотров 5 млн
How I Made Kirby Maker
9:21
Просмотров 665 тыс.
I made a coding language... In Scratch!
3:21
Просмотров 4,1 тыс.
I Made Celeste but it's 3D
12:25
Просмотров 1,3 млн
AI Learns to play Geometry Dash || FINAL
11:51
Просмотров 240 тыс.
So I added a Difficulty for my dad...
12:06
Просмотров 11 млн
Coding Weapons until My World is Destroyed
10:04
Просмотров 1,2 млн
AI Learns to play Geometry Dash || Part 1
9:53
Просмотров 196 тыс.
Bedrock. Why?!
22:37
Просмотров 416 тыс.
Новый вид животных Supertype
00:59
Просмотров 148 тыс.