Page 1 of 1

LovelyImgui - An Immediate Mode GUI Library for Love2D

Posted: Sun Dec 22, 2019 1:42 pm
by YoungNeer
LovelyImgui is a WIP immediate-mode gui written in pure Lua. It attempts to be simple, stupid and highly customizable!

Currently it doesn't support that many widgets but in the future (perhaps with support of contributors :3 ) it'll support many essential widgets and features! This limitation doesn't mean it's not fit for development - infact a complete project has been made with this GUI!!

Here's a snippet showing a basic imgui created with Lovely-Imgui::

Code: Select all

imgui = require 'imgui'

function love.draw()
  if imgui.button('Hello world') then
    imgui.label('You are clicking on the button!!')
  end
  imgui.draw()
end