LÖVE-like framework BUT using MuJS
- JavaScript 100%
A smol LÖVE-like framework using MuJS and raylib.
I was watching the latest Tsoding Daily rediff
where he plays with MuJS, and when he mentionned LÖVE I stopped watching and made this cuz I had an idea in mind:
Having a global mu2d (like love) and putting stuff in it like a mu2d.update and/or mu2d.draw function like love.draw with LÖVE.
Ur honest reaction to this project:
CODING
Simple example
// index.js
mu2d.draw = function () {
mu2d.background({ r: 255, g: 255, b: 255, a: 255 });
mu2d.text('Hello, World!', 400, 300, { a: 255 })
};
Building
You need to install c3c first.
$ c3c run --trust=full # `--trust=full` is needed because of the use of scripts.
$ ./build/mu2d
Documentation
Available in docs/