Hyper Sonic

Results 96 comments of Hyper Sonic

Other use case: vertical slicing (multi-layered music) for adaptive music.

Could we write a macro that simulates the third version by typing @tcalvert's version? ```rust injected_format!("{x}\t{y}\t{z}\n", x, y, z) // expands to format!("{x}\t{y}\t{z}\n", x=x, y=y, z=z) ``` Even if not...

Same issue on Linux with `bison: command not found`. Installing bison with `sudo apt install bison` works (as in the Docker file in https://github.com/pmq20/ruby-packer/issues/39) So I suggest to simply add...

No guaranteed fix, but for local work I use my own branch of picotool which adds a bunch of try-except, error messages and empty checks. You may find some ideas...

Hi, I followed the new instructions and doing a raw `pip install .` which generates the files (esp. p8tool) locally. As I see them in my VCS, I assume it's...

Looks like pip is now able to auto-detect lack of permission when not using sudo and falls back to --user install: $ pip install . > Defaulting to user installation...

Same issue with code becoming garbage. Sprites are fine, but map, sound and music (basically all the rest) are also garbage. Maybe this is due to an update in PICO-8...

Note that a .p8 build works fine, only .p8.png fails. In other words, `to_p8_file` works fine, but not `to_p8png_file`.

I also needed to write instructions such as "Press 🅾 (O glyph)" and the 🅾 (O glyph) became "ユか✽ゆヤま◆". After processing Lua content with Python, it was even flattened to...

Erm... I had the exact opposite issue, where the last line would be considered uncovered *only if adding* a trailing comma ```lua t = { 1 a.b, 1 a.c, 1...