I'm writing a Game Engine - Let's Import my Digital Friend

Sdílet
Vložit
  • čas přidán 5. 06. 2020
  • Patreon: / floatymonkey
    Discord: floatymonkey.com/discord
    Instagram: / laurooyen
    Code: github.com/floatymonkey
    Background Music by Jonathan Swinnen
    / jsm_music
    #gameengine

Komentáře • 18

  • @zooidiotgaming5784
    @zooidiotgaming5784 Před 4 lety +5

    This is really amazing im learning alot of stuff that i want to learn but a bit hard to find in this platform thank you so much

    • @FloatyMonkey
      @FloatyMonkey  Před 4 lety +1

      Thanks. It's a pleasure to work on this sort of technology and I love to share my knowledge, so you're welcome!

  • @shines4031
    @shines4031 Před 4 lety +5

    Waiting for CZcams algorithm to pick you up!

  • @whythosenames
    @whythosenames Před 4 lety +1

    I saw your comment under the video of the Cherno and I love your videos. With this quality in a short time you will get a huge amount of subscribers and views. Good luck :)

    • @FloatyMonkey
      @FloatyMonkey  Před 4 lety +1

      Oh thanks, some channel growth would be nice :-) New video should be out tomorrow, by the way.

  • @WillFaustCuber
    @WillFaustCuber Před 4 lety

    Wow I love your channel! I just stumbled across it today from your comment on The Cherno's video about why he is making a game engine. You are just as good of a resource as him! :)

    • @FloatyMonkey
      @FloatyMonkey  Před 4 lety

      Oh thanks! TheCherno has always been a huge inspiration for me. I follow him for over 5 years, when he started his Sparky Engine series. You comparing me to him is probably the biggest compliment I can get.

    • @WillFaustCuber
      @WillFaustCuber Před 4 lety

      @@FloatyMonkey Your welcome! I might learn C++ soon...

  • @shahidraja843
    @shahidraja843 Před rokem

    Very informative videos

  • @ScientObject40
    @ScientObject40 Před 4 lety

    you have a new subscriber !

  • @kevenhagy1383
    @kevenhagy1383 Před rokem

    I am enjoying

  • @MichaelDavydoff
    @MichaelDavydoff Před 3 lety

    Point for improvement: you are starting right of the bat, without introduction to your engine. It would be cooler if we could walkthrough with the whole process of game engine and game creation. It also would be great if you will make accent on the game more than on an engine, cuz engines by themselves almost useless without the game

  • @hmthanhgm
    @hmthanhgm Před 2 lety

    I think you need to turn on Fan to get mony from youtube Chanel

  • @steinred4053
    @steinred4053 Před 4 lety

    what can you advise me to learn c++ ?

    • @FloatyMonkey
      @FloatyMonkey  Před 4 lety +3

      That’s a great question. I rolled into programming due to my interests in electricity and electronics. Seven years ago I wanted to take that a step further and I bought an Arduino, a tiny computer to which you connect buttons, led’s, displays... It’s programmed in C++ (the first language I learned) but since my first projects where so simple (10 lines of code) it felt more like C.
      The way you learn is to be curious about what would happen if you change, add or remove a line of code. Or when you wonder if something is possible, Google it and find out there actually is a way to solve your problem (there always is). You don’t need hardware (like an Arduino), you can perfectly write small projects with input and output from or to the command line. The bottom line here is that I never followed a course. I just tried to solve tiny problems at a time, expanding my knowledge step by step.
      Don’t waste time watching tutorials. Try to make a small project, use the debugger, try to make it faster, add some more functionality. Chances are it might be trash, but you just start over again. At some point you’ll feel comfortable to tackle bigger problems. cppreference and stackoverflow are your friends. Even to this day, at least 25% of my programming time is spend Googling, reading documentation, doing research, ...
      Good Luck!

    • @steinred4053
      @steinred4053 Před 4 lety

      @@FloatyMonkey thank you so much :) i want used c++ for game development . can you recommend me some c++ books for beginner ?

    • @FloatyMonkey
      @FloatyMonkey  Před 4 lety +2

      I don't know about good books (never read any). When you say c++ for game dev, do you mean gameplay or engine programming, my recommendations might depend on it. Anyways, this is a great resource to learn the absolute basics: www.learncpp.com/ For engine (specifically graphics) programming I can't recommend learnopengl.com/ enough (there will be a book version of the site shortly). If you want to use c++ for actual gameplay programming, I recommend you look into Unreal Engine. In my opinion that's the only engine that has proper c++ support with a large enough community around it to help you out. Hope this is useful.

    • @steinred4053
      @steinred4053 Před 4 lety +1

      @@FloatyMonkey Thx , I appreciate your help