First Time Using Godot As C++ Developer

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ต.ค. 2024
  • After the Unity debacle I heard many good things about Godot which ultimately made me wanna try it out and see for myself how it feels like to make a game in Godot.
    ····················································································
    Twitch ➤ / cakez77
    Twitter ➤ / cakez77
    Patreon ➤ / cakez77
    Discord ➤ / discord
    TokTok ➤ / cakez_77
    Coding ► / @cakezdev
    Gaming ► / @cakeztv
    ····················································································
    My Game Tangy Defense
    store.steampow...
    The Repository:
    github.com/Cak...
    I always wondered what would have happened if instead of C++ I started my serious game development journey in Godot?
    ····················································································
    About Me *
    Hey! And welcome. I'm an indie game developer, currently working on a Tower Defense Game written entirely in C/C++, I tried using Unity or Unreal Engine in the past, but never really found much success. I'm mostly posting devlog / devblog videos where I show off the progress I make on the game.
    ····················································································
    Check out some of my other videos!
    • I Tried JAI, Can It Re...
    • First Time Using Godot...
    • Tired Of Unity? Let's ...
    • This Made My Game So M...
    • I Made Vampire Survivo...
    • A Day In The Life Of A...
    • My life changing year ...
    ····················································································
    #cpp #gamedev #coding

ความคิดเห็น •

  • @Cakez77
    @Cakez77  ปีที่แล้ว +45

    I always wondered what would have happened if instead of C++ I started my serious game development journey in Godot?

    • @Spartan322
      @Spartan322 ปีที่แล้ว +13

      Could always use C++ in Godot and get the weirdest of both worlds :P

    • @kiryonnakira7566
      @kiryonnakira7566 ปีที่แล้ว +6

      - there is an intellisense built-in, just not for C# (at least not yet)
      - you can control click to get the built in documentation, just not with C# (at least not yet)
      - you can make a Node accessible with unique names (with the % symbole or right click and "Access as Unique Name") and in the code you can directly access it without the need of writing the whole path. Tho i would recommand to use [Export] to store the component instead so if you happen to change it, it changes everywhere and doesn't break your code.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +8

      Thanks for the info, from what I gathered, this is exactly what others are saying. The Export stuff on fields seems to be the best solution

    • @Frazer213
      @Frazer213 11 หลายเดือนก่อน

      @@Cakez77 godot isnt C++ is it? C# or their own scripting language it thought.

  • @kiryonnakira7566
    @kiryonnakira7566 ปีที่แล้ว +180

    this video can basically be resumed by:
    "Godot sucks"
    * a few moments later *
    "nvm i'm dumb"

    • @Cakez77
      @Cakez77  ปีที่แล้ว +12

      lol yeah^^ true

    • @rhnirsilva652
      @rhnirsilva652 ปีที่แล้ว +41

      it's the usual gamedev pipeline

    • @Cakez77
      @Cakez77  ปีที่แล้ว +7

      kinda true yeah^^

    • @kiryonnakira7566
      @kiryonnakira7566 ปีที่แล้ว

      @@rhnirsilva652 i can confirm x) it happened to me when i started learning python.

  • @paulcasanova1909
    @paulcasanova1909 ปีที่แล้ว +107

    8:00 that's a pure C# feature. Position is a vector2, vector2 is a struct, structs are allocated on the stack instead of the heap, as a result structs are passed by value not reference. Properties in C# are just methods, so your code:
    Position.x += speed.x
    Actually transforms to
    this.get_Position().x += speed.x
    But because "get_Position()" is getting a struct, its passing over a completely new object. So your code is fundamentally doing this:
    (new Vector2(x,y)).x += speed.x
    Which the compiler rightfully complains because that statement will just not do anything. This exact thing also happens in Unity if you try to set the position:
    transform.position.x += speed.x
    The solution is to extract the struct, make changes, then put it back in. Or do operations with the entire struct not just its parts. So like what you did or:
    Vector2 pos = Position
    pos.x += speed.x
    Position = pos
    Yes its dumb, but its part of interop. Communicating with C++ code, GPUs, buffers, etc will require structures that have their layout sequential.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +28

      Holy shit, like how do you know this? I mean how? Now the way you talk about this makes me think that languages like C or C++ are just much easier to use lol. But thanks for the detailed explanation wow

    • @gmhs2
      @gmhs2 ปีที่แล้ว +3

      ​@@Cakez77tbf, that's to be expected, they (C esp) are lower level than many other common langs now, and going further leads to raw asm, which is just readable machine code, and is the simplest serious language in a way.

    • @my2cents795
      @my2cents795 ปีที่แล้ว +9

      @@gmhs2 People love to complain about references and pointers concepts and syntax in C and C++ but conveniently forget how ambiguous the behaviors of objects can be in languages like C#.

    • @vaibhavkrkm
      @vaibhavkrkm 11 หลายเดือนก่อน +2

      ​@@my2cents795yea, C is basically the fundamental, it's more simple than modern languages, but languages like C#, Python are complex but at the same time easy to learn since there's a lot of low level stuff already done! But in my opinion, it's better to start the programming journey with a language like C

  • @Weetile
    @Weetile ปีที่แล้ว +68

    You'll have waaaay less headaches using native GDScript, trust me! Your player movement script could have only been a few lines compared to C#, plus you get way better intergration and IntelliSense 😄 Interesting outlook on Godot though!

    • @Cakez77
      @Cakez77  ปีที่แล้ว +16

      Thanks for the tips bro. I wanna try a real game for fun with gdscript next. I heard a lot of good stuff from the comments

    • @Weetile
      @Weetile ปีที่แล้ว +10

      @@Cakez77 I look forward to it! Just watch out for any Godot fanboys getting pissed when you criticise the engine for any reason ☺️ If you've ever programmed in Python, GDScript is really similar!

    • @Cakez77
      @Cakez77  ปีที่แล้ว +7

      Well so far everyone has been very polite which is nice

    • @vaibhavkrkm
      @vaibhavkrkm 11 หลายเดือนก่อน

      Yes exactly! GD script is especially made for Godot (btw C# development is in progress and I am also looking forward to it) and it's highlighting and intellisense is good too! Also, for the nodes which you r gonna use very much, you can make a variable and store it inside that, and then use that variable instead of the whole GetNode and path thing every time!

    •  10 หลายเดือนก่อน

      GDScript is great but slow(er). For most basic things, it's perfectly fine. For some heavy calculations, go with C# or C++ (yeah, you can use C++ in Godot).
      I'll use GDScript for my game if I feel like it's needed to improve performance, I'll move to C#. Extra work to port to C# but it's waaay faster to work in GDScript.

  • @pietraderdetective8953
    @pietraderdetective8953 ปีที่แล้ว +25

    I enjoyed the video I went through the highs and lows and I could actually feel the frustration xD LOL
    but yeah, once you're used to Godot it's very easy and fun to use!
    looking forward for more videos!

    • @Cakez77
      @Cakez77  ปีที่แล้ว +4

      Glad you enjoyed it, yeah I wanna try making a game in godot soon. Maybe using GDscript and the inbound editor too. Just a little annoying about the vim keybinds

  • @TheRaticide
    @TheRaticide ปีที่แล้ว +22

    I spotted you deleting the > and then retyping > again at 8:37. It was cool to see that come back to bite you in the arse.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +3

      I actually saw that when I watched the video on TH-cam too lol. Facepalm

  • @Chevifier
    @Chevifier ปีที่แล้ว +53

    Once you get the tilemap system you just get it but its definitely a learning curve.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +4

      Yeah, a little weird that one

  • @akselst
    @akselst ปีที่แล้ว +20

    If you use GD script you get documentation and everything you would expect in the native Godot script editor. If using GD script I recommend using the native editor and customising it to your needs. However visual studio code is a better option when using C#.

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Ahh good to know and I assumed that was the case yeah. Makes me wanna try native gd script I also heard it's faster than c# when compiling?

    • @SuperFriendBFG
      @SuperFriendBFG ปีที่แล้ว +4

      @@Cakez77 Should be yeah. There are C# vs GDScript benchmarks out there on the Tubes if you're looking for that.

    • @akselst
      @akselst ปีที่แล้ว +4

      @@Cakez77 GD script is faster. And on that note. Imagine compiling in Unity versus Godot. Lol. Godot is great for prototypes. I don't understand why anyone would want to make a porotype in that slug Unity.

    • @nunyabusiness9433
      @nunyabusiness9433 ปีที่แล้ว +3

      @@akselst The constant slow reloading of assets is what drove me away from Unity. I didn't even have a game's worth of assets, just a bunch of prototyping stuff, why would it constantly need to reload it and take 30 seconds to do it every dang time? 🤮

    • @akselst
      @akselst ปีที่แล้ว

      @@nunyabusiness9433 Yeah. It can really affect your workflow.

  • @rmt3589
    @rmt3589 ปีที่แล้ว +13

    That was out of left field, but was good. Godot is my back-up plan if I get tired of trying to make my own game engine.
    Still, I hope you continue the devlogs of making your game in C++. It's helping me learn a lot, and I'd be sad of it stopped.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +3

      Hey bro I'm glad you liked it and yes I will continue with the devlogs it's just that I'm currently doing a rework to OpenGL and need to finish that first to talk about it

    • @rmt3589
      @rmt3589 ปีที่แล้ว +3

      @@Cakez77 Ooh!!! I'm excited for that!!!

  • @Jeffool
    @Jeffool 11 หลายเดือนก่อน +2

    Getting into Godot myself and I thoroughly enjoyed your willingness to share your learning! Thanks!

    • @Cakez77
      @Cakez77  10 หลายเดือนก่อน

      Godot is a good choice, good luck bro

  • @TacoTechnica
    @TacoTechnica ปีที่แล้ว +2

    It was great watching your experience through this, it's always a struggle switching between tech and I love that the frustrations were transparent. I will admit though that if I was tuned into the stream some parts would frustrate me extremely, particularly the part right after adding a collider. In that situation the script was manually doing physics, yet there was the expectation that the engine would somehow apply collisions when the code explicitly sets the character's position. Understandable though given that there's a LOT of stuff to keep track of when learning new engines. Also in the video it looked like the initial response to inconsistencies or problems quickly swerved to the negative, which is understandable (since EVERY developer, esp. myself, goes through moments of "why doesn't this work grr" followed by "ohhhh whoops"). But still it's something that struck me while watching this. Regardless I definitely enjoyed this and wish the best of luck on your gamedev!

    • @Cakez77
      @Cakez77  ปีที่แล้ว +2

      Hey thanks man, this is definitely the best feedback I got so far. I really appreciate the detailed explanation of what exactly came across as "annoying" or "triggering". I can see how some people can get annoyed by me ranting about the engine while clearly doing something wrong. Really helpful for the future for me thanks bro.

    • @TacoTechnica
      @TacoTechnica ปีที่แล้ว

      Awesome, stoked I was able to help!!

  • @jamesclark2663
    @jamesclark2663 ปีที่แล้ว +6

    Thank god! Even though I've been at this stuff for years I still find myself fiddling around for hours with even the most basic stuff at times and it makes me feel like I am a total idiot. Now I feel less alone knowing there is at least one more person out there who struggles with it too 🙃 Fun little video. I enjoyed seeing your reactions to stuff mostly out of a perverse understanding because I would have reacted the same way lol

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Happy do hear you enjoyed it bro I'm sure most people think the same way as we do lol

  • @ProgrammingUniverse
    @ProgrammingUniverse 11 หลายเดือนก่อน +1

    Since you said in an interaction in another comment, that you will see how much godot content you'll make depending on how good that video is received: I am doing my part. Upvoted and commented and subscribed. :P

    • @Cakez77
      @Cakez77  11 หลายเดือนก่อน

      Already working on another video, great to hear

  • @SkyLavend
    @SkyLavend ปีที่แล้ว +8

    Watching someone not understand what a CharacterBody2D is or really how anything works in this engine is super interesting to me

    • @Cakez77
      @Cakez77  ปีที่แล้ว +2

      I still don't understand how you can't just use a collider with a sprite but maybe in the future

    • @eschryn
      @eschryn ปีที่แล้ว +4

      I think it's because the CharacterBody2D is probably the collider and the collision shape is just a shape kind of like fixtures and bodies in Box2D

    • @rameynoodles152
      @rameynoodles152 ปีที่แล้ว +6

      @@Cakez77 Like zcore said, the CharacterBody2D is the actual physics collider, and the Shape is literally just that... a shape. But without the shape, the collider doesn't have any definition of the boundaries of where it should check for collision.

    • @SkyLavend
      @SkyLavend ปีที่แล้ว +1

      @@Cakez77 The sprite is a image, you CAN put a collider INSIDE of the sprite by using a static body, but it wont have any physics. Making the actual physics the root node of the character will give you the ability to move everything around together rather than just the sprite by itself. Yes it is kind of confusing coming from a different engine but in godot things are node based. Everything is node based.

  • @cheesymcnuggets
    @cheesymcnuggets 11 หลายเดือนก่อน +4

    I love seeing people over-complicate simple problems because they're new and don't know what they're doing, never a dull moment. You did very well considering it was only a few hours and you were using C# instead of GDScript. It was also funny seeing you blame Godot, got that gamer rage lol >:)

  • @d.vultures1091
    @d.vultures1091 ปีที่แล้ว +2

    This episode of the Cakez Morning Show might be my fave. :))
    Much love!

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Thanks bro and thanks for supporting me

  • @ltecheroffical
    @ltecheroffical ปีที่แล้ว +5

    I have a lot of improvements to suggest, mostly with the player:
    Godot handles jumping and moving by default by using the template when creating the character body script.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +3

      I see, well I wanted the exact Celeste movement with is very particular and I didn't have much time. Next time I wanna take some more time and do a bigger game. Not sure what I will do yet tho

  • @ssokolow
    @ssokolow 11 หลายเดือนก่อน +1

    Re: node paths, you can export a variable to the inspector and then connect things up there. It supports receiving drag-and-drop from the scene tree for convenience.

  • @Spartan322
    @Spartan322 ปีที่แล้ว +16

    You could also literally make your game in C++ with Godot using GDExtension, but that requires dealing with scons and you kinda need to learn the structure of how Godot works. (there is a CMake template, but the officially supported build system is scons)
    That aside you really should've been using the Godot move functions which handle literally every movement issue, all you do is mess with velocity, you also get a floor, ceiling, and wall detection with it.
    Also you can put an export attribute on nodes and just set the variable in the inspector. No need to mess with the GetNode function, you can also have nodes with unique names and thus only reference it by its unique name in the scene tree. (there are other ways to get them too, GetChildren/GetChild also work, but why would you torture yourself with doing that, the strings are interned within Godot, so their lookup ends up being really fast in Godot)

    • @Cakez77
      @Cakez77  ปีที่แล้ว +5

      I heard about C++ in godot yes, but I wanted to see how it would compare to unity and was positively surprised. Ah so you can do the same thing with references ad in unity, but it makes sense that export works on those yeah. About the move function, doesn't it use physics? or is it just checking for collision? On my next run I can try it out.

    • @Spartan322
      @Spartan322 ปีที่แล้ว +12

      @@Cakez77 move_and_slide performs sliding physics, move_and_collide only really performs collision.

    • @vitorgabrielgomesrodrigues
      @vitorgabrielgomesrodrigues ปีที่แล้ว

      The move function only does collision, you have to code the physics yourself (unless you use a RigidBody)@@Cakez77

  • @mmarchiori
    @mmarchiori ปีที่แล้ว +4

    Godot it:
    I HATE THIS ENGINE!
    I LOVE THIS ENGINE!
    I HATE THIS ENGINE!
    I LOVE THIS ENGINE!
    I HATE THIS ENGINE!
    I LOVE THIS ENGINE!
    I HATE THIS ENGINE!
    I LOVE THIS ENGINE!

  • @thedrunkmonkshow
    @thedrunkmonkshow 9 หลายเดือนก่อน

    This was great to watch and you figured out a lot more than I did my first try. As someone who's used Kilk 'n Play/Clickteam Fusion and GDevelop when I went into this my first time blind I didn't know what the heck was going on because I guess unless you're familiar with Unity or one of the other modern engines nothing makes sense or is intuitive. Especially for the 2D stuff I was thinking, "Why do I need to put up and work with all this crap just to get an instance of an object moving and colliding correctly?" But after watching TH-cam videos and using GDScript instead of C# then it started to make sense and I like it a lot more now. I'm gearing up to work on a game of some kind after a decades long break from the stone age of QuickBasic and Visual Basic so I'm cramming to learn all the new things that's out there and testing the waters before I go full steam ahead into a project. 😀

  • @lshadowSFX
    @lshadowSFX ปีที่แล้ว +4

    "Jumping would always pull me down with tremendous force" HAHAHAHAHAHA this video was hilarious! it represents me on so many levels!

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      lol yeah didn't think that. Keep your head up brother

  • @Versanitybutreal
    @Versanitybutreal 6 หลายเดือนก่อน +1

    Thanks for making me feel smarter for those couple of minutes

    • @Cakez77
      @Cakez77  5 หลายเดือนก่อน

      Aha! How did I do that

  • @_midinette_
    @_midinette_ 11 หลายเดือนก่อน +1

    actually really loved watching the 'bumbling around not reading the docs' approach, would love to see it being done in c++ with gdextension/engine modules to create new base node types

    • @Cakez77
      @Cakez77  11 หลายเดือนก่อน

      Hmm maybe I can do that in the future, just need an idea for a little game that I could make

  • @eduardob4107
    @eduardob4107 10 หลายเดือนก่อน +2

    5:37 if you use GDscript the definitions/documentation is native to the editor. For C# (and other languages added by the community), you have to import the LSP, like you would the first time you are using most IDEs

  • @MasterBroNetwork
    @MasterBroNetwork ปีที่แล้ว +2

    Loved the video, Godot has some weird differences but it's an incredible engine once you get to know it, My personal favorite feature is the Input Map, It's great compared to having to type something like if(Keyboard.KeyCode.Escape.Pressed == true) or something when I can just type if(Input.IsActionPressed("MyAction") == true)
    Quick question: What VS Code theme are you using? (if you're using one and I'm just not running an outdated version of VSC)

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      Yeah I fully agree, I just started another Godot run today on my stream, it has been very fun to work with GDscript. I'm using the default theme of VSCode, nothing special.

    • @MasterBroNetwork
      @MasterBroNetwork ปีที่แล้ว

      @@Cakez77 Thanks! I'm probably using an outdated build of VSC then, Good luck with your Godot endeavors! :)

  • @keithprice1950
    @keithprice1950 9 หลายเดือนก่อน +1

    I like using GD Script with Godot because I don't have to switch between the editor and VS Code. Just makes it more streamline and GD Script is simple to pick and feels less cumbersome than C# or C++

    • @Cakez77
      @Cakez77  9 หลายเดือนก่อน

      Yeah gdscript was a lot easier to use

  • @matrixfull
    @matrixfull ปีที่แล้ว +1

    it's so nice to see you try Godot! I was really curious how you'd handle it. But yeaa it had so many ups and downs and everytime I thought you'll give up blame the engine and end the video xddd but no you always figured stuff in end! you're not quitter that's for sure! well done!

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      True not a quitter that's for sure, glad you liked it

  • @afiqzx
    @afiqzx ปีที่แล้ว +2

    Entertaining and informative as always!

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      That's great to hear bro!

  • @youranonymousyoutuber4051
    @youranonymousyoutuber4051 ปีที่แล้ว +3

    why the f am I not subscribed ... subscribes immediately

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Thanks brother^^ glad you enjoyed the video

  • @AJ213Probably
    @AJ213Probably ปีที่แล้ว +3

    For C# I use Rider IDE, but without that I would use Visual Studio 2022. Main important thing for me is the debugging like breakpoints

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Interesting, but debugging also worked very well in vscode. I'm a vscode enjoyer actually so I'm glad how it worked

  • @a.m.7438
    @a.m.7438 8 หลายเดือนก่อน +1

    1:25 anthropomorphizing it and saying its complaining had me howling 😂 never heard a system described like that.

    • @Cakez77
      @Cakez77  7 หลายเดือนก่อน

      lol

  • @RayOfSunlight984
    @RayOfSunlight984 ปีที่แล้ว +1

    3:46 Assuming before asking it's the most common mistake in the world, Also, this is why you should learn before thinking things are just like Unity
    5:20 "The code editor wasn't very helpful"
    Not for C# at least, or so i think, but the C# support will keep improving
    6:14 "if you can close the script"
    Click on 2D, and done.

  • @theyellowdude69
    @theyellowdude69 ปีที่แล้ว +2

    I really didn't need to do all that taks.json stuff with godot ever, i just set the editor in the godot editor settings, and open the script, install the c# extension inside and it works with all the intellisense, debugging and launching the game from vscode as well, idk why that didn't worked for you, but really enjoyed the video lol

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Oh really? Chat on steam told me I need it huh 🤔

    • @paulcasanova1909
      @paulcasanova1909 ปีที่แล้ว +2

      Yeah same, I just went to Project Settings > C# > Generate Solution and it started working. I think they said needed you to do it that way because that mightve been how 3.x used to do it but you're on 4.1

    • @theyellowdude69
      @theyellowdude69 ปีที่แล้ว

      yup, its that simple@@Cakez77

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Thanks for the info, I'll give gdcript a try next time, I'm just a little worried about vim keybinds

  • @soundrogue4472
    @soundrogue4472 ปีที่แล้ว +2

    0:47 wait I'm confused; can't you use c++ code in C# though? Some import of Dll files from my understanding.

    • @Cakez77
      @Cakez77  11 หลายเดือนก่อน +1

      I think you can yeah but I haven't tried it yet

  • @iglobrothers645
    @iglobrothers645 ปีที่แล้ว +1

    ... Kinda amazed how I can do the essentially same movement script in sub 30 lines

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Is this captain Iglo? Damn brother is packing some programming punch holy

  • @paulimriss
    @paulimriss ปีที่แล้ว +1

    So nice how none of the videos of people trying godot for the first time reads the Getting Started docs, that would make the learning way much faster ;p

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      That would be too easy bro and there would be no exploration

  • @krank23
    @krank23 ปีที่แล้ว +3

    Whenever I switch between coding my own stuff using just some graphics library, to using Unity/Godot, I kind of chafe a little bit against the engine. I know I don't HAVE to do the gravity, for example, myself - but I feel like I should! Otherwise, how will I know it works the way I want? Eventually, I learn to ease off and do things the way the engine wants me to. They all have their foibles, but… it's like Apple products. As long as you accept doing things The Apple Way, everything works fine. If you want to do something another way, or do something Apple has decided you shouldn't want to or don't need to… things get rough. Basically the trick is to let go and not to worry - just letting the engine do its thing.
    And then find some bullshit thing the engine's making incredibly hard to do for some reason even when you follow al of its rules, and just give up and go back to using a pure graphics library =)

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      lol^^ I mean that's why I code in C++ lol. So I don't give up^^ great summary lol

    • @krank23
      @krank23 ปีที่แล้ว +1

      @@Cakez77 Well, for me it's a cycle: Sooner or later I go "wtf why am I writing my own collision code this is a solved problem and I should spend my time doing more interesting stuff. There's no way my implementation will be any better than Unity's anyways, so I should just use Unity…"
      And so the cycle continues… This probably explains why I haven't finished any of my game projects =)

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      Maybe you just haven't found the one game you want to make yet bro, such things can move mountains

  • @1negroup841
    @1negroup841 ปีที่แล้ว +6

    You can also use C++ with Godot. First Comment.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      Yeah I wonder for that will work out could try it out in the future

  • @T1A0
    @T1A0 ปีที่แล้ว +1

    Tremendooooooooo!!

  • @takarahayashi4124
    @takarahayashi4124 ปีที่แล้ว +2

    you would save yourself so much trouble just by watching a 20min tutorial beforehand, pride is before the fall as they say lol

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      I just like diving into things and exploring, especially for the first time

  • @bitlong4669
    @bitlong4669 2 หลายเดือนก่อน

    lol watching this video would have totally discouraged me from using godot. Thankfully I watched some other tutorials and am quite proficient now in godot.

  • @DePistolero
    @DePistolero ปีที่แล้ว +9

    hey, I think your channel will explode into the stratosphere if you continue down the Godot route... or at least mix it in a bit more...

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      Haha glad you like the Godot content I will think about it depending on how the video will so

  • @defcodeOne
    @defcodeOne ปีที่แล้ว +1

    Your one of the first I've heard to pronounce Godot properly.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      True! Everyone else ist just clueless

  • @TouchcreatorYT
    @TouchcreatorYT ปีที่แล้ว +2

    as a godot user you dont understand how triggered i was by your improper usage lol

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Yeah I got that a lot during the stream as well lol

  • @trays1377
    @trays1377 ปีที่แล้ว +1

    You can coding with C++ in Godot? please see documentation in GD Extansion chapter.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      Yeah I saw that I wanted to try C# first tho

  • @tomtravis858
    @tomtravis858 ปีที่แล้ว +1

    Godot is the only engine that once I learned it, it doesn't constantly piss me off. Don't get me wrong, sometimes there's just something stupid happening, but it's like 100x than Unity (I haven't used unreal).

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Yeah I'm mostly experiencing the same, I'm currently making another game in godot and it's been very easy so far

    • @SnakeEngine
      @SnakeEngine 9 หลายเดือนก่อน

      Ähmm, ried out Godot for few hours and already encountered multiple bugs. So no thanks. Unity feels more stable.

    • @tomtravis858
      @tomtravis858 9 หลายเดือนก่อน +1

      @@SnakeEngine 🤷 not my experince

    • @SnakeEngine
      @SnakeEngine 9 หลายเดือนก่อน

      @@tomtravis858 Have fun removing the horizontal edges at the sides of the screen in borderless window mode.

  • @kaysta_dev
    @kaysta_dev ปีที่แล้ว +1

    The shift click is actually crtl click in godot.

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Wait really?

    • @kaysta_dev
      @kaysta_dev ปีที่แล้ว

      @@Cakez77 ya

  • @AlFredo-sx2yy
    @AlFredo-sx2yy ปีที่แล้ว +2

    1:33 no, don't take it back, any respectable program would automatically generate the path when CREATING files on a path that doesn't exist. It's a different story when you are READING files, but CREATING files?!?! I'm sorry but this is just unacceptable. I would have personally stopped trying Godot after seeing such a thing, because if it can't even get right some basic filesystem support, what is there for me to expect from the engine?

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      I actually thought the same in that situation. It should be improved yeah. But tbh, the engine itself it actually very good. I just started another run today making vampire survivors on stream and was having a great time.

    • @AlFredo-sx2yy
      @AlFredo-sx2yy ปีที่แล้ว

      @@Cakez77 I have no doubt that the engine is great, but sadly it looks like it has a lot of weird quirks that just smell like summer intern code tbh.

  • @CluTrading
    @CluTrading 5 หลายเดือนก่อน

    Celeste who? This is an upgrade🔥🔥🔥🤝

  • @farhadgojazade9918
    @farhadgojazade9918 หลายเดือนก่อน

    there is a typo in the title. Should be "First Time Using Godot As Dumb Developer"

  • @ALIAli-di8ph
    @ALIAli-di8ph ปีที่แล้ว +2

    Please continue with godot because i devloper in godot from mobile❤❤❤

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Glad you like it bro I'll think about it

  • @grarldbrown6812
    @grarldbrown6812 หลายเดือนก่อน

    I've wonder if he realized that Godot engine can do C++

  • @SnakeEngine
    @SnakeEngine 9 หลายเดือนก่อน +1

    Why did you quit Unity?

    • @Cakez77
      @Cakez77  9 หลายเดือนก่อน

      Because I tried to make a game in it back then and after 3 months I had nothing to show for. I was very inexperienced, so I decided to learn by learning c++

    • @SnakeEngine
      @SnakeEngine 9 หลายเดือนก่อน

      @@Cakez77 Yeah, better learn the roots first, but then use Unity.

  • @PaulSpades
    @PaulSpades ปีที่แล้ว +7

    Amazingly annoying noob programmer tries learning a complex piece of tech by complaining that wishful thinking and past learned bad practices don't apply here, before reading documentation.
    The conclusions seem fine, though. Sort of entertaining.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +4

      Not sure if toxic or not but glad you like it bruh

  • @d3ad_g0at
    @d3ad_g0at 12 วันที่ผ่านมา

    Bro spent all that head scratching making the character movement when in GDscript all you need is like 4lines of code XD
    Ps. Try GDscript next time it was fun watching this

  • @Kapendev
    @Kapendev 7 หลายเดือนก่อน

    Godot 3 was simple. I had a similar experience with Godot 4.

  • @nobodycares9579
    @nobodycares9579 4 หลายเดือนก่อน

    OH MY GAWWWWDAAAAAH!

  • @thechosenone729
    @thechosenone729 ปีที่แล้ว +1

    I like Godot but Nodes triggers me sometimes.

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Takes some time getting used to yeah

  • @not_ever
    @not_ever ปีที่แล้ว +2

    I unironically think your limited space mechanic is "fucking genius".

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      true lol that's what I thought

  • @vojtastruhar8950
    @vojtastruhar8950 4 หลายเดือนก่อน

    I expected to see some C++ sorcery around here, not picking C# bEcAusE iT's LikE uNitY RiGht and then some 15 minutes of yapping about not knowing an engine you didn't bother to learn.

  • @DiasFranciscoA
    @DiasFranciscoA ปีที่แล้ว +1

    To be honest, this would have been a 15min adventure if you tried it with GameMaker. For 2D, GameMaker is still the goto for fast prototyping|dev.
    The GML script language is a flavored JavaScript as far as syntax goes but its very C (functional oriented) with OOP features. So as a c++ dev you should be super comfortable with it.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +1

      I doubt the 15 minutes because there is always something that you don't expect especially when you try out something new

  • @till8413
    @till8413 ปีที่แล้ว +2

    höre ich da einen deutschen Akzent :D

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Niemals lol

  • @dijik123
    @dijik123 ปีที่แล้ว +1

    I love godot

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      Great to hear^^

  • @srv5614
    @srv5614 ปีที่แล้ว +2

    Next time just follow the official tutorial to learn the basics

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      But that would be too easy

  • @dav1dtv847
    @dav1dtv847 2 หลายเดือนก่อน

    how you make everything 10x harder no hate btw.

  • @418im_a_teapot4
    @418im_a_teapot4 9 หลายเดือนก่อน

    video summary:
    blindly creating a game without following or checking the documentation first, and apparently it's the engine's fault😂
    but seriously though if you use gdscript you can just code straight away

  • @burlingk
    @burlingk ปีที่แล้ว +1

    It seems like a lot of the strange behaviors you ran into are the same as current versions of Unity.

    • @Cakez77
      @Cakez77  11 หลายเดือนก่อน +1

      Yeah I remember having similar issues in Unity, but I guess Godot is inspired by it

    • @burlingk
      @burlingk 11 หลายเดือนก่อน

      @@Cakez77 I think it has to do with icing similar code for their C# libraries. Unity came first, so it kind of set the standard.

  • @kilrath81
    @kilrath81 4 หลายเดือนก่อน

    This was painful... You obviously had a negative bias before you even started blaming the engine for everything. I have used Unity, Unreal and now i use Godot. There is some unique differences and some things that are hard to find or understand but spending just a little bit of time researching the engine before hand would have had you well on your way.

  • @Quaa_Pa
    @Quaa_Pa ปีที่แล้ว +1

    how much did you get paid for GoDot advertising?🤔

    • @IncomingLegend
      @IncomingLegend ปีที่แล้ว +1

      I gave him one croissant filled with cum and he said yes.

    • @Cakez77
      @Cakez77  ปีที่แล้ว +5

      Ehh nothing? lol I just like Godot tbh, really good stuff so far

    • @happygofishing
      @happygofishing ปีที่แล้ว +6

      Unity is already doing the best godot marketing campaign in the world 😂

    • @Cakez77
      @Cakez77  ปีที่แล้ว

      True LOL

  • @HurricaneSA
    @HurricaneSA 8 หลายเดือนก่อน

    That one guy in chat was right. This is painful to watch. Watch some tutorials and you might realize most of this video is really just one face palm after another. Knowing C++ does not mean you know anything about a framework or an engine. Your own hubris was your biggest enemy in this video. Learn how to learn.

  • @Sagolera1218
    @Sagolera1218 11 หลายเดือนก่อน

    This was hard to watch. A whole bunch of complaining about the engine when it's your own fault

  • @hazelora
    @hazelora 11 หลายเดือนก่อน +1

    so the engine is great, you are just bad ;)

  • @Fleshbits1
    @Fleshbits1 7 หลายเดือนก่อน

    If you put C++ in the title and then use C#, you are going to lose 90% of viewers at 0:50 seconds. I know this, because its when I stopped watching...