Just out of curiosity: is anyone here using Love2D and Lua for game development? I have some experience with Unity but sometime ago started learning Love2D. Lua seems to very simple language to code in and since Love2D doesn’t have any graphical UI it sort of forces you to make everything work through code. As a beginner hobbyists, I really love this.

I’d love to hear your thoughts about Love2D and what it’s capable of. Currently I am interested in doing asmall Snake-like puzzle game and a demo for classic Ultima type crpg. Not really full games, but I am sort of interested in seeing how well certain concepts and ideas work in practice. Lua seems to be very good for doing just that.

  • firns@piefed.social
    link
    fedilink
    English
    arrow-up
    1
    ·
    4 days ago

    I know this is 2 years old now but, for anyone finding this in the future like I am:

    Love is wonderful. If you like Lua, I’d say its the best framework to be using. It is my framework of choice for anything from prototype to medium-sized.

    Love2d uses luajit which allows for good performance. If you need more performance, luajit uses has ffi for writing performance heavy code in C.

    Tons of 3rd party libs exist to handle the minutia like anim8 and hump.

    The community is decently large and responsive. There are tons of resources for help (I started with challacade’s udemy course that I got on sale for 8 bucks and it was a wonderful start).