Basics of the C# Language Using Godot 4.2

Поділитися
Вставка
  • Опубліковано 28 вер 2024

КОМЕНТАРІ • 13

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

    That C# section is very good, we need you at the college!

  • @luckyknot
    @luckyknot 6 місяців тому +2

    You are da boss! thanks for this C# tut, waiting for it to get more advanced!

    • @FinePointCGI
      @FinePointCGI  6 місяців тому +3

      I put out a how to build a budgeting app that's a bit more advanced and then we'll need to eventually move into unit testing and then I was thinking maybe doing some kind of platformer or something like that

    • @luckyknot
      @luckyknot 6 місяців тому

      ​@@FinePointCGI UT in Godot/C#? That's awesome! not much info about it out there. And the platformer using good architecture sounds lovely too :)

  • @ThePerro
    @ThePerro 6 місяців тому

    Thanks for this! I am currently playing around with C# in Monogame framework to just learn the basics and make very small projects, eventually I may move to Godot for larger ones so this is a good starting point to understand how C# integrates with Godot!

  • @fakfha
    @fakfha 6 місяців тому

    can you show app connect to sql server and show data in godot

  • @mikhailhumphries
    @mikhailhumphries 6 місяців тому +1

    Can you build for android with c# and c++?

    • @stal1n63
      @stal1n63 6 місяців тому

      If question about godot, so for 4.2/4.3 answer is yes for both cases. For .Net build support is experemental, and you need targeting at least Core 7 version with AOT. For cpp - GDExtension or GDNative (but that's deprecated, and better changing engine core itself, if you need that)

  • @KccbzZ
    @KccbzZ 6 місяців тому

    Thank you for making this! I will soon want to dabble in C#, just because I don't know many languages haha

  • @moose6459
    @moose6459 6 місяців тому +2

    This is painful on my eyes. Uncapitalized class name, camelCase method names. The horror.

    • @FinePointCGI
      @FinePointCGI  6 місяців тому +2

      This tbh but in all seriousness
      At work for better or worse we do
      PascalCase for public vars
      camelCase for private
      The person class itself was an oversite on my part

    • @moose6459
      @moose6459 6 місяців тому

      @@ortyrxz I got into snake case for a while, even wrote my c++ engine using all snake case (don’t know why I liked it, never used any languages with it as standard). Now I’ve ascended, and recognize PascalCase is superior.
      Similarly used to put curly brackets on the same line religiously, now can’t stand them not having their own line

    • @stal1n63
      @stal1n63 6 місяців тому

      ​@@ortyrxz nah, every programming language still have common naming convention, and everybody will bonk you, if you dont follow them. For GDS is snake_case, for C# is CamelCase. None other than that is allowed by society, and you be just a moron, if dont follow them. And bonk'ed