this post was submitted on 13 Sep 2023
480 points (98.0% liked)

Technology

58133 readers
4462 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 151 points 1 year ago (4 children)

This is a great opportunity to tell people about Godot, a free open source engine that has been killing it lately.

[–] [email protected] 62 points 1 year ago (3 children)
[–] [email protected] 25 points 1 year ago (4 children)

I’m a dad with a full time job and 2 toddlers. If I wanted to dip my toes into game development for the first time and I wanted to use Godot, what kind of project should I do first? Something that’s great for starting out and learning the absolute basics.

[–] [email protected] 14 points 1 year ago

As typical as it is for the current indie game dev climate, making a 'Vampire Survivors' type game is probably a really good starting point for game development. 2D games are somewhat easier to make than 3D ones, so a 2D roguelike could be fun (but get's very complex very quickly) or a old-school Zelda styled game would also be pretty cool in my opinion while remaining fairly simple.

Here's are a couple other avenues to learn off the top of my head:

  • Follow along with one or two of the large amount of tutorials they have for the engine and adding new features and gameplay mechanics to them when you feel like it.

  • Think of a cool but simple idea and try to execute it yourself through trial and error, referencing the online docs and asking questions to the Godot game dev community.

It can be super daunting as there is a lot to learn. Try to learn by working on something that you yourself think is fun and that'll keep you more motivated :)

[–] [email protected] 3 points 1 year ago

What @dack said for your first game that is a great resource. If you wanted an overview of how the godot engine works later you can start from the Intro

[–] [email protected] 3 points 1 year ago

If you have some coding knowledge, this series of videos was amazing: https://youtu.be/mAbG8Oi-SvQ?si=Tyy2hjrdrvafSo6z

Not everything he does is right and some things he doesn't even understand that well, but it gives you a good idea into everything you'll need and you can then quickly learn how to expand from that.

[–] [email protected] 5 points 1 year ago

I was waiting for that.

[–] [email protected] 1 points 1 year ago

Thank you for this! Last FOSS engine I used was OGRE but it was fairly inconsistent across hardware and PC only at the time.

[–] [email protected] 11 points 1 year ago (1 children)

Shoutout to Bevy as well. It's not as user friendly or polished as Godot but it's a lot more powerful. If you're a talented game dev I'm sure you could do some amazing things with Bevy.

[–] [email protected] 7 points 1 year ago (1 children)

Bevy is a very different kind of beast. It’s basically “here’s the ECS, have fun!” while it rides into the sunset.

My next project will use bevy, but mostly because its API is so ridiculously small that I can map it entirely into my own engine (which then exposes the ECS through my own API). That would be a lifetime's task with Unity (don’t know enough about Godot to say definitely, but I bet it’s the same, since it has the same architecture).

[–] [email protected] 4 points 1 year ago

To be fair it does have a huge plugin ecosystem that handles most of the common use cases, so it's a bit more than just an ECS, but the docs have some pretty big gaps in them so you could be excused for thinking it's more bare bones than it is.

[–] [email protected] 3 points 1 year ago

how are the AR applications for Godot?

[–] [email protected] 2 points 1 year ago (1 children)

I would have used it if they didn’t focus so much on their own GDScript instead of keeping C# support.

[–] [email protected] 8 points 1 year ago (1 children)

But Godot 4 has excellent C# support?

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago)

Only for Godot 3, not 4?

Edit: Godot 4 supports C#, but only for desktop games, not web, android and iOS.