Log In  
Follow
TastyEnchilada

I don't wanna taco bout it.


Cart #38099 | 2017-03-08 | Code ▽ | Embed ▽ | No License
2

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

2
1 comment




no game, just a reskin

3
1 comment




snakes! it has to be snakes!

7
4 comments



Cart #36136 | 2017-01-20 | Code ▽ | Embed ▽ | No License
6

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)
6
1 comment



Cart #36010 | 2017-01-18 | Code ▽ | Embed ▽ | No License
3

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);

[ Continue Reading.. ]

3
1 comment