EDIT: I caved in and uploaded it to the BBS. Right clicking does not work properly on the BBS, sadly. ;(
You can use this link to itch.io instead. Right clicking does work there but there is still some mouse related weirdness going on. Download the cart for best experience.
https://thetruehero.itch.io/boneblast?secret=EIKLzfEsxuo4g2Umju423TEyew

UPDATE: Version 3: new tv model
UPDATE: Version 2: less screen bumping
Hery is my first finished game and my first pico-8 game! There is still some stuff that could be improved:
- better music (!)
- sound effects
- more audio/visual feedback
- more animations (e.g. animate completed lines)
- some bugs and gameplay tweaks (the tetris rules are not implemented perfectly and I assume there are some glitches possible with rotation)

This took me longer than it should have. Some rudimentary camera controls are on the player 1 and player 2 buttons (rotation/translation). Depending on settings this glitches alot.
3D-Model: low poly cat by xavab29 Creative Commons - Attribution - Share Alike
Published on May 28, 2015
www.thingiverse.com/thing:853358
STL to lua Matlab script:
mesh = stlread('chatlowpoly.stl'); fid = fopen('stl.lua','wt'); fprintf(fid, 'stl = { '); for i=1:length(mesh.vertices)-1 fprintf(fid, ['{ ', num2str(mesh.vertices(i,1)), ', ', num2str(mesh.vertices(i,2)),', ',num2str(mesh.vertices(i,3)), ' },\n']); end fprintf(fid, ['{ ', num2str(mesh.vertices(length(mesh.vertices),1)), ', ', num2str(mesh.vertices(length(mesh.vertices),2)),', ',num2str(mesh.vertices(length(mesh.vertices),3)), ' }\n']); fprintf(fid, '}'); fclose(fid); |
