irrlichthn 3 hours ago

Strange to wake up and see this on Hacker News - in 2025. I originally created this but am no longer involved - AMA if you like.

  • lasagna_coder 43 minutes ago

    What was the main learning you got from building the engine? Was there some feature you wanted that no other engine at the time had? If you built an engine today, what would you do differently?

    • irrlichthn 28 minutes ago

      I thought most of the existing engines out there were too complicated, so I wanted it to be easy to use. Probably that's also why it became that popular.

      For a modern engine today - I think the architecture of the engine would look different - and would focus more on creating and organizing content then mostly on rendering.

  • rafaelmn 2 hours ago

    Thank you for doing it ! What was the motivation behind it/when did you start building it ?

    I never built anything with it but reading through the source code got me to learn so much about programming. I probably spent more time copying stuff from Irrlicht/Ogre3D/ODE (although I never managed to grok that one) than anything else in high school.

    • irrlichthn 2 hours ago

      I originally wanted to create a 3D game - and needed an engine for it. Never made it to the 3D game part, though :)

  • le-mark an hour ago

    I spent a lot of time studying this code way back when, it was a valuable resource in my personal journey, so thank you x1000!

  • jarrell_mark 2 hours ago

    Thanks for the quality software. Had some good times in high school trying out Irrlicht

  • kaiokendev 2 hours ago

    It was a great engine. You built a great piece of software.

valorzard 6 hours ago

I wish there were more standalone 3D renderers like this. This, Ogre3D[0], and Wicked Engine[1] seem to be the last of their kind

[0] https://github.com/OGRECave/ogre

[1] https://github.com/turanszkij/WickedEngine

  • dualogy 3 hours ago

    Wicked, fully FOSS for non-console targets, I had some fun with earlier this year, it's a great very-modern full-featured D3D-or-Vulkan renderer under active development with a lively yet cozy-sized community (including a handful of folks taking care of the Linux side). The API is easily learned and can be operated via your game code from Lua or C++ or a mix, as you see fit, with Lua scripts being executable also in Wicked's editor app (Windows/Linux).

    My hunch is that by sticking to just Windows/Linux/consoles and firmly-decidedly-skipping other cross-platform platforms such as Apple's Metal, mobile's OpenGL, WebGL/WebGPU/WebAssembly, it is kept maintainable, unbuggy (not 100s of bug-tagged Open Github Issues) and capable of ongoing rapid feature iteration.

  • pjmlp an hour ago

    There are a few .NET and Java ones still going at it as well.

    LibGDX, jMonkeyEngine, FNA, MonoGame, Silk.NET, Vortice

  • modeless 5 hours ago

    Does this one count? http://cubeengine.com/

    • valorzard 5 hours ago

      Yeah I guess so, lol. I don't think its super updated though. Pretty sure Red Eclipse has long since forked cube engine and done it's own thing with it

crivlaldo 5 hours ago

I made a course project on Irrlicht back in 2008. It was a shooter with a Quake map, medkits, and ammo. I don’t even remember who you were supposed to shoot at.

The point of the project was to show what a graphics engine is, and why I could get in just a few evenings what used to take man-months or even years only a few years earlier.

I got the highest grade.

webprofusion 4 hours ago

Godot is currently used as the 3D engine in the Tesla in-car UI, possibly also in their apps (?). It's cross platform and open source and has a pretty vibrant dev community.

  • modeless 4 hours ago

    They're reportedly switching to UE5.

    • 77pt77 3 hours ago

      For a car UI?!

      Seems complete overkill.

      • modeless 3 hours ago

        Rivian has been using it for a while. Yeah, it's overkill.

        • 8f2ab37a-ed6c 2 hours ago

          It's reasonably modular and you get access to the full source, so if you wanted to drop many chunks of it that aren't relevant to you, you could, in theory. Of course it's still a 20M+ LOC codebase and all future version updates integration are going to suck big time, but a large enough team can likely power through the suffering here.

pjmlp an hour ago

It was one of the most well known engines, alongside Ogre3D, before the whole Unreal/Unity dichotomy took off.

jsheard 9 hours ago

Now there's a blast from the past. Irrlichts heyday was around ~2010, but it looks like there's still a few people keeping the lights on.

TIL it was actually used in a commercial game (Bugsnax) relatively recently, although the devs said that it will be their final release on the engine.

https://xcancel.com/luthyr/status/1271866001467080705

  • frainfreeze 8 hours ago

    Blast from the past indeed! I ve toyed around with it, Ogre3D and others, finally setting down on P3D. Over a decade ago I maintained unofficial Panda3D Facebook page, and had page analytics track followers count again Ogre3D and Irrlicht Engine pages, trying to surpass them..

  • garaetjjte 9 hours ago

    Ogre3d also seems to be alive.

    • steve_taylor 8 hours ago

      I remember a time when the topic of a lot of forum posts was Irrlicht vs. Ogre3D. If I recall correctly, Ogre3D was harder to get started with and had a smaller scope (just the scene graph), but was the better of the two 3D scene graph implementations.

      • skocznymroczny 8 hours ago

        I miss the era of websites like flipcode (archives are still available https://www.flipcode.com/ ), people sharing screenshots of their OpenGL/DirectX engines. Nowadays making a 3D engine is more of a hobby, because you'll never catch up with the big ones.

      • thegeomaster 8 hours ago

        Well this was a trip down the memory lane. I built a small game on Irrlicht at the time and I remember these discussions also.

        Irrlicht had its editor (irrEdit), a sound system (irrKlang), and some basic collision detection and FPS controller was built right into the engine. This was enough to get you a considerable way through a fully featured tech demo, at the very least. (I even remember Irrlicht including a beautiful first-person tech demo of traversing a large BSP-partitioned castle level.)

        However, for those not afraid to stitch these additional parts from other promising libraries (or derive them from first principles, as was fashionable), OGRE offered more raw rendering prowess: a working deferred shading system (this was the heyday of deferred shading), a pop-less terrain implementation with texture splatting, and more impressive shader and rendering pipeline support, with the Cg multi-platform shading language. I remember a fairly impressive ocean surface and Fresnel refraction/reflection demos from OGRE at the time.

      • protocolture 7 hours ago

        Yeah classic haha. I think the Ogre forums especially had quite a few of these comparison threads.

        "Ogre3d is a graphics engine, if you want to spend the time to strap a game to it, go for it."

  • emmelaich 7 hours ago

    The news page mentions a few games released last year (2024).

  • monkeyelite 7 hours ago

    In retrospect, I think you are far better off forking Quake rather than messing with these kinds of 2010 projects which attempt to solve all problems, and do none of them very well.

    • jsheard 7 hours ago

      The problem with forking IdTech is that it's GPL, which is a problem if you ever want to release your game on consoles. The vast majority of new Quake-inspired boomer shooters take the pragmatic approach and just use Unity or Unreal instead.

      • indrora 3 hours ago

        Saleco is doing just fine, and it's based on Doom.

        • MindSpunk 2 hours ago

          Isn't Selaco desktop only? The problem is GPL on consoles, because you can't ship GPL code to a console because it's impossible to meet the modify+re-link requirement since the consoles will only run signed code.

      • monkeyelite 7 hours ago

        > which is a problem if you ever want to release your game on consoles

        The direction of dependency is from your program to the console specific stuff. You can write a platform library which is linked to your program without releasing that library.

        > modern boomer shooters

        I didn't say for boomer shooters. It's a general 3D game engine.

        > just use Unity, Unreal or occasionally Godot instead of the actual Quake engine.

        Because they are popular and familiar, not because they did a serious evaluation.

        Also my comment was about Irrlicht/Ogre, etc.

        • jsheard 7 hours ago

          If you know of an example of GPL code being cleared for release on consoles I'd be interested to hear it because I'm not aware of any. The game Wrath: Aeon of Ruin was built on a fork of the Quake engine, but then they had to spend years rebuilding it from scratch in Unity for the console releases because GPL was verboten.

          • monkeyelite 7 hours ago

            Maybe you're right. I have not tried this and don't know someone who has.

            I am reasoning with the example of DirectX. You should be able to release a GPL program that uses DirectX, even though nobody has the source code for it.

            If some version of that is not right, it's impossible to make a GPL windows or Mac UI application.

  • PenguinRevolver 4 hours ago

    Holy crap, I didn't know that they used that engine for that game. I thought they stopped using it after Octodad: DC.

jtfrench 6 hours ago

I thought you died alone. A long, long time ago.

DeathArrow 2 hours ago

When seeing this I wondered if I somehow accidentally accessed a 15 years old version of HN.

brcmthrowaway 8 hours ago

How does this compare to Godot

  • monkeyelite 7 hours ago

    Not at all similar. Godot follows the Unity model of focusing around a GUI editor. This is a set of cpp libraries.