• 2 Posts
  • 40 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle








  • If you know C++ already, Unreal is a much more natural starting point than either Unity or Godot.

    Unreal is what gets used in many AAA shops - it’s not a monopoly by any means but it is the most common off-the-shelf engine in the industry. Unity’s main edge is that it’s easy to learn but if you are comfortable in C++ then there’s no real benefit to Unity.

    Godot uses GDScript, which is a custom scripting language that’s meant to be easy to learn. It’s FOSS so you don’t need to worry about being screwed over - but it’s a lot less mature than something like Unreal which can ship on everything you can think of.

    But my advice is to make small things. Don’t hyperfocus on a dream game. Just make things that will take a weekend (maybe a week at most). Then move on to something else.

    When I was getting into game dev, I made a couple simple projects then jumped into my dream game. I spent so long making that one game that I never finished.

    When I got hired in the industry, they cared more about what I released than what my education or job experience was. Because that one big game was never finished, I wound up with my smaller “just getting started” games on my resume; stuff I had made but wasn’t proud of. But those games were at least finished and available to the public… and they were what got me hired, not my magnum opus overscoped unfinished indie game I never completed.





  • Not easily, but if you become a game developer you can start to tell at a glance. Unity games have a very specific type of jank and look + feel. (So do Unreal, Source, and Godot games.)

    Even if a game is highly stylized, a Unity game always “feels” like a Unity game. Kerbal Space Program, Pokemon Brilliant Diamond/Shining Pearl, Pokemon Go, Cuphead, Untitled Goose Game, Cities Skylines, Valheim, etc. It’s a combination of physics, shaders, and input latency that’s hard to put into words.

    The closest I’ve come to seeing a game that breaks out of the “made in Unity” feel is Stanley Parable Ultra Deluxe, which was made in Unity but pretends to be made in Source (the original Stanley Parable was made in Source).





  • Depending on how much money you expect to lose, that may be the more prudent option for some.

    At the very least you’d have something to work with - it’s not truly “from scratch”.

    I work in the AAA industry and I’ve ported code from one engine to another - it’s not fast by any means, but at the very least you can assume the code that’s there is largely correct. The killers are materials/shaders, porting over design work, and fixing timing issues. If you have netcode that can be tricky as well.

    But at the very least you can have the core of your game running again reasonably. It’s how things like Stanley Parable: Ultra Deluxe went from Source to Unity, and how Pokemon BDSP went from the proprietary Pokemon engine to Unity.

    Indies and AAs can hire some extra hands to work temporarily with their existing engineers to port and they’d probably lose less money than Unity is charging.