3 anecdotes: - For Talos Principle 2, Croteam switched from their own engine to UE5. The description was "It would be like attempting to sprint and catch up with a train that is already far down the track and accelerating even faster.". From a user's perspective, observe the graphics of Serious Sam Siberian Mayhem and Talos Principle 2: Same company, released at a similar time. Talos Principle (UE5) looks dramaticall…
Making Video Games in 2025 (without an engine)
201–210 of 225 posts
Re: Making Video Games in 2025 (without an engine)
#202Earlier quoted context omitted.
But Celeste came out in 2018. How is it relevant to 2025 as suggested in the title? Also, pretty sure it was a small indie team rather than a “big developer”
How is it not relevant? Celeste wasn't exactly a pinnacle of bleeding edge technology when it came out. If I remember correctly it was a team of 2.
Re: Making Video Games in 2025 (without an engine)
#203My experience with making your own engine vs using an off the shelf solution - the former can be viable and even superior on the condition that you know what you're doing . That is if you've built entire games or engines before, or have enough experience with the internals of one. Otherwise it can be a dangerous fool's errand on which many projects go to die. My younger naive self can attest to this, he loved trying…
I think the biggest mistake you can make is shifting your mindset from making a game to making a game engine . No, you still want to be dead set on making your game , you just don't have the ready-made building blocks from an off-the-shelf engine, so you have to make your own as you go, and only as needed. Personally, when I was working on my little game, I found it helpful to call the endeavour—just like Noel Berry…
This reminds me of when someone makes his own static site generator, write one blog post about how he started a blog with his own static site generator, and then post nothing afterwards.
I suspect the reason for this genre of behavior is there is just a tremendous amount of creativity required to come up with anything original enough to justify putting into a game, or a blog, but game engines and static site generators have relatively straightforward feature requirements that you can just implement like any software feature. Building your own game engine or static site generator is just a good way to procrastinate doing the hard part of game making or blogging while still keeping yourself in the game making or blogging zone so that you can tell yourself, yes, I am a game developer or blogger.
Re: Making Video Games in 2025 (without an engine)
#204Earlier quoted context omitted.
Customizable snipping is a feature editors support (which I mentioned as they are related/similar to what the AI is doing), but is different to the AI autocomplete behaviour. If I have a JSON structure, I can paste that into the file as a comment, e.g.: # {"foo": 1, "bar": "test", "baz"} @dataclass class FooBar: foo: and the AI will/can autocomplete/generate that to: @dataclass class FooBar: foo: int bar: str baz: in…
Right, it's a less-flexible paste macro you don't actually have control over. shrug
Re: Making Video Games in 2025 (without an engine)
#205I see `dotnet watch` being mentioned for code hot reload which is such a great feature for quickly iterating on a game. Not having to restart the whole game just because one has changed a few if statements and values really helps staying in the flow. But I'm still not too enthusiastic about having GC in C# which is why ideally I'd like to start making a small 2D game just with SDL3 and C++ but how could I get this ni…
I quite like modern C++, so I really tried to make it work for gamedev, but I think you can't really do it. You can use all the modern C++ features that are not in the standard library though! I am working on a little game the last few months and after a while I just decided to not use any of the C++ standard library (I just use a few C headers) and make my own Vector, Array, Span, String, FlatMap. And using those th…
I've made my own in Python that generates Ninja files only - and it's surprisingly not that much work (especially if Claude Code can help you).
Re: Making Video Games in 2025 (without an engine)
#2063 anecdotes: - For Talos Principle 2, Croteam switched from their own engine to UE5. The description was "It would be like attempting to sprint and catch up with a train that is already far down the track and accelerating even faster.". From a user's perspective, observe the graphics of Serious Sam Siberian Mayhem and Talos Principle 2: Same company, released at a similar time. Talos Principle (UE5) looks dramaticall…
Re: Making Video Games in 2025 (without an engine)
#207My experience with making your own engine vs using an off the shelf solution - the former can be viable and even superior on the condition that you know what you're doing . That is if you've built entire games or engines before, or have enough experience with the internals of one. Otherwise it can be a dangerous fool's errand on which many projects go to die. My younger naive self can attest to this, he loved trying…
Re: Making Video Games in 2025 (without an engine)
#208Unless of course you deep down don't really want to make a game.
If you really want to make a game then start on the game and then figure out what external tools are useful for that game.
(I have released 2 commercial games with engines written by me - I would not do that again).
Re: Making Video Games in 2025 (without an engine)
#209Earlier quoted context omitted.
That sure sounds like you're describing customizable snippets, which AFAIK every major editor supports?
Sitting here on the sidelines having never configured snippets or macros or any of that in any of my editors, which I could have done like 30 years ago but never bothered in all this time, doing quizzical-dog look at all these people thrilled about LLMs. I guess they might finally get me to use those things since they take the “configuring” and “remembering shortcuts” part out, but so much of this doesn’t look new at…
Re: Making Video Games in 2025 (without an engine)
#210After I read the title, I fully expected this to be about writing games using AI. But no, actually there is no mention of AI to be found in the text, not even in the "Miscellaneous Thoughts" section, which seems to be mostly answers to "why don't you use X?" questions. Refreshing...
The author is Noel Berry, creator of Celeste. They don't shout about it, but with that pedigree, I'm confident they'll be staying well away from AI.