No video

3 Months of Game Programming in 20 Minutes

  Рет қаралды 598,816

jdh

jdh

Күн бұрын

Пікірлер: 674
@Chadderbox
@Chadderbox 2 жыл бұрын
Your technical knowledge is amazing, I'm always impressed with how much you manage to do and how you do it. I can't believe that you added raytracing aswell.
@droctogonapus1223
@droctogonapus1223 2 жыл бұрын
Raycasting
@bl4ckk
@bl4ckk 2 жыл бұрын
yoo chadderbox
@juliand3565
@juliand3565 2 жыл бұрын
not to diminish the effort but raytracing/casting really isn’t technologically challenging, in fact its one of the easiest CG exercises to do, the big issue is that theres no real way to improve the performance :) Its perfect for this due to the low resolution though!
@mikaxxy
@mikaxxy 2 жыл бұрын
@@juliand3565 yup. To add onto it, the recent hype around it is just that modern GPUs now have dedicated hardware for calculating rays more quickly to the point that it can be used in modern 3d games to actually calculate lighting in real time. Raycasts have been around ever since doom came out (30 years ago), at the very least.
@aw1lt
@aw1lt 2 жыл бұрын
chadderbox
@ArchitectofGames
@ArchitectofGames 2 жыл бұрын
I would strongly suggest watching some better videos for inspiration (seriously though, incredibly impressive to see such an engaging explanation of something that may as well be magic as far as I'm concerned!)
@jdh
@jdh 2 жыл бұрын
no no, it’s better this way - when the gameplay ends up bad we will only have you to blame!
@Kirtle
@Kirtle 2 жыл бұрын
The man, the myth, the legend himself
@markopolo2224
@markopolo2224 2 жыл бұрын
bruh
@3zzzTyle
@3zzzTyle 2 жыл бұрын
What games did you architect, Adam?
@sagitswag1785
@sagitswag1785 2 жыл бұрын
@@3zzzTyle what color is your bugatti?
@TheBauwssss
@TheBauwssss 2 жыл бұрын
Dude, that looks really awesome! When I first saw those portals with the sick a$$ lighting, the bloom and the glowing particles _in pretty much all colors of the rainbow_ my jaw just about hit the floor! It looks really, _really,_ *really* good! I'm looking forward to playing your game already 😊
@Rozza3
@Rozza3 2 жыл бұрын
I don't think it devalues the idea at all, but the "robot cultivating plants" pitch instantly reminded me of Grow Home & Grow Up. Very different though as the main focus of those games was unique (for the time) movement & climbing mechanics in 3d environments. Potentially some good research opportunities there!
@jdh
@jdh 2 жыл бұрын
huh, I've never heard of those games before! thanks :)
@joaoruss0
@joaoruss0 2 жыл бұрын
Reminds me of Wall-e. kzfaq.info/get/bejne/rMuphs9_zK2xf2Q.html
@lonkster
@lonkster 2 жыл бұрын
The music in that game is peaceful
@nesaijn
@nesaijn 2 жыл бұрын
I also got reminded of Grow Home! And also since jdh's game is underground it also reminded me of the anime Gurren Lagann. Combining them to in my head led to an image of a robot underground where the goal kinda is going to the surface and then to the sky and eventually to space :O
@deflesz6053
@deflesz6053 2 жыл бұрын
I would love to learn more about your NeoVim configuration, it seems that your workflow is really robust in it.
@jdh
@jdh 2 жыл бұрын
i might make a longer video about the setup at some point, but the driver behind everything is really just FZF (github.com/junegunn/fzf ) and the builtin LSP in NeoVim!
@c4llv07e
@c4llv07e 2 жыл бұрын
@@jdh broken link. Add a space after it, youtube thinks ')' is a part of the link.
@smellypengu1668
@smellypengu1668 2 жыл бұрын
@@jdh A video would be nice!
@bide7603
@bide7603 2 жыл бұрын
Just seen this after commenting the same thing +1
@ahmedyehia1538
@ahmedyehia1538 2 жыл бұрын
i wonder how did you put that terminal down in neoview @jdh
@tytalksYT
@tytalksYT 2 жыл бұрын
Seeing vec4 in your code and the projections reminded me so heavily of my computer graphics class. You NAILED this. Great work! Keep it up, ill be watching everything you put out
@minecraftaddictXD
@minecraftaddictXD 2 жыл бұрын
Amazing video! Recently I've gotten into game development (although I'm starting off with Unity and C#, I doubt I could handle the mental strain of making anything remotely playable in C++ my first try haha), and videos like these are what really pushed me to start in the first place! I'm probably about to use the wrong terminology, but there's just something so fascinating and inspiring about seeing how iterative the design process is; it takes months of dedicated work to achieve systems that most players will take for granted, and watching how you find solutions to functional camera and lighting systems makes it seem a lot less daunting! I was introduced to this channel through the Minecraft from scratch video and found this video through your tweet -- and I'm looking forward to seeing more progress on this game's development!
@yarpen26
@yarpen26 5 ай бұрын
As someone who almost screwed off his own head from his neck while trying to code a freaking _pause menu window_ in a 2D game I'm building in my company's proprietary software (our own library is there but it has zero game-related features, only the most basic geometric operations as well as some QoL things such as a scripting language or array element handling, so it's kind of in between a framework and a dedicated engine), the phrase "taken for granted" has adopted a brand new meaning to me.
@StarmanSuper00
@StarmanSuper00 2 жыл бұрын
The voxel jitter fix reminds me of a technique used in (directional light) shadow mapping to essentially correct for the same problem there: as the directional light view frustum moves with the player camera, object rasterization to the shadow map produces aliasing artifacts which vary with the camera view, so shadow edges flicker and warble as you pan the camera around or move. In that situation you define a matrix projecting the center of the camera frustum to texel space, floor its x/y components, and project that back to world space before finally using the floor()'d frustum center position to produce the actual light view matrix. (I was not smart enough to figure this out on my own, and had to study the trick before properly understanding it, but you're clearly a different breed)
@jdh
@jdh 2 жыл бұрын
that's exactly where the trick came from!
@posterizedsoul4810
@posterizedsoul4810 2 жыл бұрын
'Turns out game design is harder than any programming problem.' *(as a programmer)truer words have never been spoken
@WasatchWind
@WasatchWind 2 жыл бұрын
As a designer who's seen programmers do design, truer words have never been spoken.
@TidanOfc
@TidanOfc 2 жыл бұрын
Even though I disagree, I can respect your view point.
@Mika-ss2yh
@Mika-ss2yh 2 жыл бұрын
YES!
@simplexeon
@simplexeon 2 жыл бұрын
From the perspective of game designer who knows very mild amounts of code, i feel like most people can design a game but not all of the technical black magic required to make it work, so it's interesting to see the other perspective. Just a natural disposition i guess
@jasper-3338
@jasper-3338 2 жыл бұрын
@@simplexeon to work out an idea completely is harder as just programming the idea out. The programmer knows how to program it but onto how it should work? Well back to the design!
@matt123337
@matt123337 2 жыл бұрын
Hell yeah, new jdh video just dropped
@hassanshaikh3451
@hassanshaikh3451 2 жыл бұрын
I find it super satisfying when a pixel art style game actually has consistent pixel size so epic work doing that as well as implementing things that wouldn't traditionally be seen in such a style like smooth camera interpolation
@razorstone3088
@razorstone3088 2 жыл бұрын
how consistent were you in these 3 months? Did you have lots of breaks in between or were you grinding the whole time?
@jdh
@jdh 2 жыл бұрын
reasonably consistent, there's of course also a *lot* of work that doesn't end up in the video so it might not look like much. probably should have taken more breaks :)
@chefaku
@chefaku 2 жыл бұрын
another question that I ask myself, had to refactor the code a lot, or hardly even touched the code already done?
@jdh
@jdh 2 жыл бұрын
@@chefaku everything is constantly being refactored. no code is safe!
@lolcatwill
@lolcatwill 2 жыл бұрын
the answer is simple: meth
@macslash5833
@macslash5833 2 жыл бұрын
@@jdh have you tried rust, if so will you ever use it in a project
@lima7132
@lima7132 2 жыл бұрын
Man, that's crazy! I love the style and how much you went through to get to something you were happy with :] I was surprised to see someone come up with an idea so similar to mine, (and actually start making the game lol) really hoping it comes out fully fleshed out someday! We need more robot vs nature games out there haha
@ggc_5655
@ggc_5655 2 жыл бұрын
As always, an amazing and VERY inspiring video!! Also, maybe you can consider adding a "pinch of" factario by adding some mechanisms that help you to reach your goal.
@arial_01
@arial_01 2 жыл бұрын
LES GO WE GOD MORE JDH! Love watching this stuff, been around since the beginning and cant wait to see more!
@GhsT-th2gg
@GhsT-th2gg 2 жыл бұрын
Very cool project ! Do you think you'll make the repo public someday ? I'd love to check out that engine
@spekulatiu
@spekulatiu 2 жыл бұрын
Holy Shit, this looks fucking awesome. Really hope it gets finished, not like 99.9% of other game devs with dev logs (*cough* Karlson from Dani *cough*)
@spiderbat2089
@spiderbat2089 2 жыл бұрын
You’re one part of the reason he hasn’t finished the game
@spekulatiu
@spekulatiu 2 жыл бұрын
@@spiderbat2089 ah yes, ofc. Thenn go ahead, explain yourself.
@DoodleBunnyTV
@DoodleBunnyTV 2 жыл бұрын
@@spekulatiu he hasnt completed it because so many people are complaining about it that the pressure is too much for him
@spekulatiu
@spekulatiu 2 жыл бұрын
@@DoodleBunnyTV i mean yea thats a reason. But i also didnt want to put him in a bad light, it just worked with the joke.
@mananasi_ananas
@mananasi_ananas 2 жыл бұрын
Or our boy Randy
@electron8262
@electron8262 2 жыл бұрын
I really like your C++ coding style. I think you use the modern luxuries of the language whilst still keeping it readable and treating it as a C with Classes.
@ErikPelyukhno
@ErikPelyukhno 6 ай бұрын
18:15 when I noticed the cute little green blinking light on top of the robot botanist that made me really happy 😊
@RedZFlame
@RedZFlame 2 жыл бұрын
i'll be honest, the screen when palletization is off also looks really cool. the vibe gives me sort of a deep game with soft, subtle graphics that might show the way someone sees the world. i really hope that there's gonna be an option to be able to see the game without palletization, even if the graphics will be made around the idea there will be palletization, it looks like something that would change the graphics in such a subtle but impacting way
@Magnogen
@Magnogen 2 жыл бұрын
Those raytraced shadows are mmm _chef's kiss_
@myth2553
@myth2553 2 жыл бұрын
3 months wait was worth it for this!
@pognar
@pognar 2 жыл бұрын
Don't strain yourself too much, every video you upload is a treat.
@user-il7vq1gc2i
@user-il7vq1gc2i 10 ай бұрын
Translation is the paradigm, the exemplar of all writing. It is translation that demonstrates most vividly the yearning for transformation that underlies every act involving speech, that supremely human gift.
@averageenthusiast7616
@averageenthusiast7616 2 жыл бұрын
I’m absolutely in love with all of these concepts all together. I love the setting, the art, the whole idea of it being underground, the building, all of it. I really hope we’ll get a playable version soon at some point.
@anti2023
@anti2023 2 жыл бұрын
The soft camera touch was simply.... hmmm satisfying. It helps easing the motion sickness that usually happens with full locked camera.
@bryanthegoalie5692
@bryanthegoalie5692 2 жыл бұрын
I'm getting into programming, and development. I love watching what others are doing. Thank you!
@MrAbrazildo
@MrAbrazildo Жыл бұрын
4:30, even literal strings are slow to apply on the [ ] operator. If framebuffers is a double array of textures, I use to write things like that as: enum en_FrmBufs { GBUFFER=0, TRANSPARENT, MAX_FRMBUFS }; enum en_Textures { GBUFFER=0, NORMAL, DATA, DEPTH, MAX_TEXTURES }; std::array framebuffers; So if you ever need to pick 1 of them alone, use the enums. It'll just slide through arrays directly, the fastest way. But normally, you'll be busy by just using range loops. When you need to "handle" them, just (btw, you don't need to use this->, because by default the compiler will get things from the class) : for (auto &frmbuf: framebuffers) for (auto &texture: frmbuf) Framebuffer::make_attachment (texture.handle);
@Bebeu4300
@Bebeu4300 2 жыл бұрын
It's cool to see everything coming along and the game design falling a little bit more into place. One detail I'm not too sure about is the palette stuff. I feel it makes the game look like a heavily compressed video and I personally prefer having smoother colours. Of course, I'm not suggesting you remove it necessarily, but if you release the game, an option to disable it would be much appreciated.
@joshuaisemperor
@joshuaisemperor 2 жыл бұрын
Am I the only one that find it so relaxing and mesmerizing just looking at all that code being written while listening to the soothing voice over telling about this amazing journey?
@Gwilo
@Gwilo 2 жыл бұрын
I'm in love with the art style and general feel of the game already
@relic374
@relic374 2 жыл бұрын
your videos are epic. they are super entertaining and I love how you explain everything. honestly one of my favorite youtube channels.
@Gemeneye0ne
@Gemeneye0ne 5 ай бұрын
You are so incredibly talented! I love video games. I especially love programmers that create something new, to me it shows wanting more than just programming but art and innovation. Keep up the awesome work, I am always in awe at how complicated games are, and truly respect when one is dont well.
@WasatchWind
@WasatchWind 2 жыл бұрын
The game is looking fantastic, I really like the concept and the name!
@dottedboxguy
@dottedboxguy 2 жыл бұрын
heeey a video from you, nice, can't wait to watch that (edit : very nice video, i learned quite a lot of things while watching it that will most likely be useful for me in some years, yay)
@4kleidisc
@4kleidisc 2 жыл бұрын
I love how he acts like it's totally normal to make a custom cpu that can run his custom graphics card that runs a custom os that can (with some tweaks) run his >=20000 line game, diy minecraft, and allows him to code even more games. This guy is a master in hardware AND software.
@Grimm-hb7ek
@Grimm-hb7ek 2 жыл бұрын
I know this is early but I honestly think you're one of the smartest programmers out there, everything you've done so far literally looks so amazing dude.
@heartsremedy
@heartsremedy 2 жыл бұрын
This is incredible! genuinely! I can't believe you did this, I can barely work with angles in my games, much less lighting effects, ray tracing, I can barely make a working camera. I'm in a similar boat because I use python and pygame to make games, but there is still a lot of stuff under the hood that's already done for me, so this is just genuinely baffling to see!
@Markyparky56
@Markyparky56 2 жыл бұрын
If the Bee Movie taught me anything, it's that flowers need pollinators. Also, that camera overscan trick was real slick, made all the difference!
@David-ng9qh
@David-ng9qh 2 жыл бұрын
2 videos from jdh, christmas hit early
@eboatwright_
@eboatwright_ 2 жыл бұрын
I love the graphic style! I also want to make a little survival sandbox game. I've gone through _so_ many programming languages, engines / frameworks, and styles trying to find something I like
@hneri1540
@hneri1540 2 жыл бұрын
Use SFML and C++ if you're making a 2D game
@eboatwright_
@eboatwright_ 2 жыл бұрын
@@hneri1540 I'm not really into C++, I like Rust much more :) Thanks for the suggestion though!
@Skeffles
@Skeffles 2 жыл бұрын
Great to see you flesh this out. It's really interesting seeing the problems you ran into with 3D isometric rendering.
@RAStemen01
@RAStemen01 2 жыл бұрын
This is really cool work, I always enjoy seeing how people encountering similar issues end up with their own unique and clever solutions. I was a dev on the now defunct game, Crucible, and we too had a character that was a plant loving robot. Its name was Bugg, but can you guess what its codename was? Yep "Robotanist." I'm sure we weren't the first to come up with that concept/name, but I'm pleased to see that we were on to something. :)
@reubs
@reubs 2 жыл бұрын
dope video dude you got my sub
@MrAbrazildo
@MrAbrazildo Жыл бұрын
5:25, more notes about this: - Deletes are good practice. But as long as I remember, if you don't customize any constructor, you don't need to write the defaults. Only write the deletes. - Why are you thinking about parent and child? Are you intending to make a linked list? What in a game would need that? Your default data struct should be std::vector. It's fast, flexible, easy to use, can be implemented by the compiler on the stack (hugely faster). Only change it for some special case if it proved worthful, like std::array for fixed-size, std::string for char container, std::deque for too much in/out from back/front, and so on. - Why are you using virtual? Just because it's an "User Interface" doesn't mean you need to implement it via an actual interface. It uses to be 15-17x slower, not bring relevant better usage. Each time you compile, both you and the compiler will always know exactly what are the UI features. So there's no need to use an interface. - I know std::optional may be easier to think. But it carries with itself the need to deal with branchings (ifs), making compiler's life harder. Compiler wants a straight road to run. With ifs, it tries to build several roads, to get rid of as many semaphores as possible. Whenever I make UI, a class holding all different UI objects has also a separated check-list, of all enable and/or visible state from each of them. Apps with valid-or-not objects have different points from which those objects start to have an always valid state. With optional, you'll have to convert them to not optional at those moments, or else you'll fill the compiler to the top, with unnecessary ifs. Eventually, you may say: _"C++ is bloated! Look how long it takes to compile!"_ - I wonder why...
@tendo6385
@tendo6385 2 жыл бұрын
I really think this color pallete lends itself way better to bright and lively scenes. You might want to merge it with another pallete for the dark underground environment.
@kleesup
@kleesup 2 жыл бұрын
Finally, a new video, love your content! 💪💙
@nesaijn
@nesaijn 2 жыл бұрын
Your robot-underground-in-caves game idea gave me this really awesome image of a mixture of the anime Gurren Lagann and the game Grow Home
@Dayne27
@Dayne27 2 жыл бұрын
This is very impressive, I'm enjoying these dev logs. It would be cool if you could make a video going into more detail about the coding aspects and how you overcame some obstacles. Other than that, it's looking really good :D
@merthyr1831
@merthyr1831 2 жыл бұрын
The shimmering effect is very reminiscent of PS1 graphics, which relied on fixed point maths for its rendering and meant vertex pixels would shift as they crossed certain coordinate boundaries. A lot of people are nostalgic of that so it's not always a bad thing! ;)
@bunnyboy7008
@bunnyboy7008 2 жыл бұрын
Being a guy who has just started out with programming & CS in general, this all is not only overwhelming but also excessively intriguing. I have always loved the idea of lines & lines of text making a machine do what you want it to. Great video! I enjoyed the dev log very much!
@jeffstienstra3615
@jeffstienstra3615 2 жыл бұрын
That smooth camera movement is amazing. I saw that other video too by aartheficial, amazing stuff.
@justinhicks1711
@justinhicks1711 Жыл бұрын
Cool lighting and cute graphics!!
@hicknopunk
@hicknopunk 2 жыл бұрын
This reminds me of making final fantasy and dragon warrior like games in pascal as a kid with 2 of my friends. We even wrote a bitmap art program, tailor made to our games. It made sprite and tile art sooooo much faster to make than using other dos art programs too. One nice feature is you could 4 way split screen and load in 3 sprites, then being able to copy sprite frame to 4 and it could even play the pictures as an animation. (Every non background element had 4 frames). We saved a lot of processing by making custom fonts for all the background tiles, so we could fake scrolling. The hardest part was composing PC speaker music, which in the battle procedure, we had to hand code, and basic bank switching to have 3 copies of the game, one with battle music, one overworld and a town song. Honestly, programming without libraries is sooooo freeing. I miss those days from decades ago.
@redstone-flux
@redstone-flux 2 жыл бұрын
I'm just impressed you coded it all in neovim
@gieringaa9877
@gieringaa9877 2 жыл бұрын
I don't know how thought through this is, but I really like the idea of the blinker on the head: It would make sense to only activate it while not being in the range of a light source (maybe range of growing like Minecraft) because he can't see in the dark. The blinking could be made of repeating patterns depending on "emotions" of the robot (code for fear of enemies, enjoyment over finding rare crystals or "low battery"). This could be coupled with making the dark more dangerous, but more rewarding at the same time. Those patterns could also be useful for riddles of some sort (syncing patterns or smth) Since those are very rough sketches, you or anyone else in the comments already thought of similar stuff. Still I hope you can build up on them and continue to produce such high quality content (literally this is insane work!!)
@jdh
@jdh 2 жыл бұрын
thanks! and thanks for the ideas :)
@noxmore
@noxmore 2 жыл бұрын
Awesome video! I really like how this game is turning out, and i'm excited about what you do next.
@zelenpixel
@zelenpixel 2 жыл бұрын
the palettized lighting looks so lovely
@andr3318
@andr3318 2 жыл бұрын
you deserve 1 million subs NOW!!!! ur the best programming youtuber I've seen!!! And also you inspired me to create my own game! So thanks for all.
@AdrianCastravete
@AdrianCastravete 2 жыл бұрын
This is the first time I'm actually watching one of our movies and at ~0:40 I already subscribed. I love your setup and it's what I also use. But probably the reason I subscribed has more to do with the fact that I relate to your struggles while game designing / programming. I wish you luck and hope to see great games from you! ;)
@michaelrichardson5322
@michaelrichardson5322 2 жыл бұрын
this is fucking nuts. looks absolutely stunning can’t wait for the next devlog
@mikul3122
@mikul3122 2 жыл бұрын
Very tasteful design, the lighting is fantastic
@quasigod1083
@quasigod1083 2 жыл бұрын
Watching you navigate you code with your neovim workflow is incredibly satisfying for some reason Also I love the games name!
@dylanmiley5642
@dylanmiley5642 2 жыл бұрын
Idea for dandelions and general plant sprite design: A tinge of bioluminescence. Allows for visibility, Adds to the magic of plants, helps the player understand why the robotanist likes plants so much. Could even become a resource thing. Maybe the light source the character has is fueled by the bioluminescent magic plants. Common plants like dandelions offer weak yellow light for a short amount of time. Maybe a sunflower would give strong yellow light for a medium amount of time. Rarer plants could give off like bright neon light. The player is on a quest to find the rarest plants both to decorate their base and to also allow them to have an easier and better time exploring
@jonathanfaber3291
@jonathanfaber3291 2 жыл бұрын
One potential problem I see is that losing the character behind the isometric stuff is very possible (say while digging a tunnel), so the geometry needs to be turned transparent/translucent at least partly so the player can see through it?
@Infiland
@Infiland 2 жыл бұрын
You could make it so that the green bulb on the robot's head blinks faster the less health you have. I think that could look dope
@Spytagen
@Spytagen 2 жыл бұрын
Channels like Game Makers Toolkit won’t ever reach you anything about game design. They just point out the obvious like: Telegraphing exists Choice based games have split paths And my personal favorite: Turn based games aren’t the same of non turn based games. As you can see, you’re better off just going off what you know for game design before eating channels like those. I’m sure there’s some good channels out there but I learned infinitely more by just watching other developers dev. Logs. There are some great ones by Devduck if your interested
@mmikael281
@mmikael281 2 жыл бұрын
The first rule of design coders. Do not do design and coding same time. Desing first and then code. Design answers question about what to do and code how to do it, you can't do thous same time. You can cut both small spaces but do them at different times.
@guyfromdubai
@guyfromdubai 2 жыл бұрын
This looks so good dude! I wonder what might be lurking in the underground that could hinder the robotanists flower finding progress
@mr_noodler
@mr_noodler 2 жыл бұрын
Amazing work!! Jdh is a Very talented programmer and computer scientist, hats off!
@bu3778
@bu3778 2 жыл бұрын
Respectfully i NEEEED more! Chill vibes and I really like the aesthetic of your game, keep it up (or else)
@quincyames2014
@quincyames2014 2 жыл бұрын
been working on my own game/engine for a few months and this is really inspiring thank you
@lucianochadru4064
@lucianochadru4064 2 жыл бұрын
Awesome !! Very interesting work. Big up
@wyett86
@wyett86 2 жыл бұрын
Suggestion: Glowing Flowers, they would feel magical, they can be plant for light and that can suit the theme. Also the new seeds could be obtained by finding small fields/underground biomes
@Gerz970
@Gerz970 2 жыл бұрын
Maybe the robots blinker could change based on how it feeling or on its health. I feel like it would be cool and add lots of visual feedback if the light were to change to red when getting towards low health and start to blink faster the lower it goes.
@alexandrosfilth7042
@alexandrosfilth7042 2 жыл бұрын
great work! looking forward to working with artists like you on the second renaissance
@user-qs1mj5xz8h
@user-qs1mj5xz8h 10 ай бұрын
Every great mistake has a halfway moment, a split second when it can be recalled and perhaps remedied.
@user-ho7ox1km8o
@user-ho7ox1km8o 10 ай бұрын
The best and most beautiful things in the world cannot be seen, nor touched... but are felt in the heart.
@mrsinewave1230
@mrsinewave1230 2 жыл бұрын
Glowing flowers would probably be nice. Adds a little magic (fitting as the game revolves around flowers) and makes the player able to actually see them.
@kristzz6586
@kristzz6586 2 жыл бұрын
I'm really looking forward to see how this project will turn out, you are one very dedicated programmer, wish u the best of luck
@firesean_
@firesean_ 2 жыл бұрын
Wall-E's plants
@phicoding7533
@phicoding7533 2 жыл бұрын
I love to see somebody who hasn't been coding for years be open about their code.
@frogman1
@frogman1 2 жыл бұрын
the concept is so very beautiful :)
@wijiler5834
@wijiler5834 2 жыл бұрын
Keep up the great work jdh, you are inspiring me to get more done especially my programming language
@ululDK
@ululDK 2 жыл бұрын
You could consider making the little green light on the robot the indication of health, so you don't need a healthbar!
@azarsraproductions7824
@azarsraproductions7824 2 жыл бұрын
Keep Working on this, I feel this has a huge future!
@domenhribernik3414
@domenhribernik3414 2 жыл бұрын
Great video can't wait for the next one!
@ZephaniahNoah
@ZephaniahNoah 2 жыл бұрын
That looks fantastic! I'm excited to play it.
@lolcat69
@lolcat69 2 жыл бұрын
bro, finally you are back, lets check this vid :)
@swangyi
@swangyi 2 жыл бұрын
Worth the wait mate! Keep up the work.
@xhidden9817
@xhidden9817 2 жыл бұрын
Let's go new video I'm excited!
@pdlbackup
@pdlbackup 2 жыл бұрын
He went crazy again!
@jordanp4333
@jordanp4333 2 жыл бұрын
Was Grow Home/Grow Up one of the games that helped inspire your idea? It’s got a similar idea of finding different seeds and growing to get places and things to collect to improve your gear. If you haven’t heard of it you should check it out.
@tytalksYT
@tytalksYT 2 жыл бұрын
Is there any chance you would make a video on the planning/ prep required/put in to make a project of this size? It would be really fascinating to see the methods you use to break this down and make it manageable
@AlexHicks_Tutorials
@AlexHicks_Tutorials 2 жыл бұрын
Really coming along, nice work!
@twomur_
@twomur_ 2 жыл бұрын
wow this is so cool! imagine a roguelike with this art style i feel super inspired!!
@deckard6052
@deckard6052 2 жыл бұрын
I love your videos, each one is inspiring me to continue working on my projects or learn some new tech!
@simplexeon
@simplexeon 2 жыл бұрын
As someone who's trying to make a game solo, even with an existing game engine, I have no idea how to make the code do half the stuff I want it to, so it's really interesting to see the other perspective of not knowing how to design a game but being able to do all of the dark arts required to make stuff with that much code actually work.
@SatrioBudiDharmawan
@SatrioBudiDharmawan 2 жыл бұрын
19:35, this is what we used to call "magic numbers"
@user-pd6vj5xw5h
@user-pd6vj5xw5h 10 ай бұрын
Peace cannot be kept by force. It can only be achieved by understanding.
4 Months of Game Programming With My Own Engine
21:30
jdh
Рет қаралды 451 М.
How NOT to make a game from scratch
8:34
jdh
Рет қаралды 274 М.
나랑 아빠가 아이스크림 먹을 때
00:15
진영민yeongmin
Рет қаралды 2,2 МЛН
Joker can't swim!#joker #shorts
00:46
Untitled Joker
Рет қаралды 40 МЛН
I Took a LUNCHBAR OFF A Poster 🤯 #shorts
00:17
Wian
Рет қаралды 5 МЛН
女孩妒忌小丑女? #小丑#shorts
00:34
好人小丑
Рет қаралды 84 МЛН
I built my own graphics card
15:34
jdh
Рет қаралды 1,4 МЛН
Building my indie game: one month of progress
12:26
jdh
Рет қаралды 274 М.
Making Minecraft from scratch in 48 hours (NO GAME ENGINE)
16:38
Programming a multiplayer game from scratch in 7 DAYS
18:28
I tried Cuphead’s hardest challenge
29:45
EazySpeezy
Рет қаралды 219 М.
Making My Own Programming Language and Coding a Game in It
10:19
AstroSam
Рет қаралды 1,3 МЛН
Every Game Engine Explained In 9 Minutes (Part 1)
9:10
Stopshut
Рет қаралды 370 М.
How do non-euclidean games work? | Bitwise
14:19
DigiDigger
Рет қаралды 2,4 МЛН
I added reflection to C++ just to make my game work.
16:30
Making a difficult game about fitting in - Acerola Jam 0
19:17
jess::codes
Рет қаралды 352 М.
나랑 아빠가 아이스크림 먹을 때
00:15
진영민yeongmin
Рет қаралды 2,2 МЛН