dwursteisen
05/10/2023, 7:00 AMTiny
.
You can create small games in LUA and run it on your desktop or web platform in no time.
I’m about to create a 1.0.0 version but you can try a WIP version by checking out the documentation: https://minigdx.github.io/tiny/
Each examples (available through the links ▶ Try an example
) can be updated, there is a hot reload: your changes will be reflected in the attached canvas shortly after 🙂
Try it by copy/paste this code for example 😉 :
function _draw()
gfx.cls()
shape.line(80, 80, 120, 80, 3)
shape.line(80, 80, 80, 120, 3)
shape.line(80, 120, 120, 120, 3)
shape.line(80, 120, 120, 80, 3)
shape.line(80, 80, 120, 120, 3)
end
Would love to know what you’re thinking about it 🙂czuckie
05/16/2023, 11:43 AMdwursteisen
05/16/2023, 12:18 PMdwursteisen
01/17/2024, 9:04 AM