Bjorn
Bjorn
I have implemented static generation in a single Lua file: [`.lua/generate.lua` on the `redbean` branch](https://github.com/bjornbytes/lovr.org/blob/redbean/.lua/generate.lua). I'm working on switching over to this but there are some problems with the markdown...
This is closed as half wontfix / half done. The new Buffer object is basically an array of compound structures. Doing the full struct API was too complicated to support,...
Added more links
On windows it seems everything is working sensibly now. Audio automatically gets rerouted as devices are connected/disabled/etc. For this case miniaudio fires stopped -> rerouted -> started events whenever something...
Linux is okay too.
I quickly sketched out support for the OpenAL `ALC_HRTF_SOFT` extension [here](https://github.com/love2d/love/compare/12.0-development...bjornbytes:hrtf). It enables HRTFs when supported and adds `love.audio.isSpatialized` to check if audio is being spatialized with HRTFs. It has...
lovr has a one number variant but it's for hexcodes: ```lua love.graphics.setColor(0xc0ffee) -- (no alpha support) ``` For a while it seemed sketchy but now I can't really live without...
Yes! In LÖVR I recently added both `Rasterizer:getCurves(string|codepoint)` (bezier curves for a glyph's outline) and `Font:getVertices` (quad vertices for a string). :getVertices lets Lua implement a Text-object-like system for caching...