Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 513 Bytes

File metadata and controls

26 lines (20 loc) · 513 Bytes

jello

immediate mode visualization library inspired by iris and imgui

guide: guide.md

quickstart

local jello = require("jello").init()
local demo = require("jello/demo")

jello.connect(demo)
local jello = require("jello").init()

jello.connect(function()
    jello.window { title = "hello jello!" } .with(function(window)
        jello.text { text = "welcome" }
    end)
end)

showcase

demo.mp4