Log In  

Cart #tinyterrarium-0 | 2023-03-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

this is a falling sand game! it's essentially a remake of one i've posted before, but completely rewritten to be performant with the latest version of pico-8. it also has a lot more features. feel free to experiment! it's also posted on itch and you can find its source code, which is released to the public domain, on github.

controls

on the simulation screen:

  • ⬅️➡️⬆️⬇️: move
  • 🅾️: draw
  • ❎: erase
  • Pause: options

on the options screen:

  • ⬆️⬇️: move between options
  • ⬅️➡️: change option
  • 🅾️❎: return to simulation
  • Pause: pico-8 menu
P#126459 2023-03-01 06:53

1

Cute little game

P#126610 2023-03-05 09:47

Any chance of adding mouse support? I'm looking through the code right now, so if I can make it work, I'll edit this with the cart.

Edit: I added it, here:

Cart #tinyterrariummouse-0 | 2023-03-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

P#126644 2023-03-06 00:51 ( Edited 2023-03-06 01:09)

that's a good idea! i'll put some thought into implementing that. for now i've made an issue for it on the tracker

P#126653 2023-03-06 03:26

Cart #kanahoyaka-0 | 2023-03-06 | Code ▽ | Embed ▽ | No License

hey @Pico_Maker and @helado ! if you divide the mouse coords by 2, you'll get the actual position of the mouse because the cart is in 64X64 res

P#126681 2023-03-06 21:10 ( Edited 2023-03-06 21:13)

@Ummmm_ok Thanks!

P#126684 2023-03-06 22:09

thanks for the tip! i won't be using this edit as-is because it also has other issues, such as breaking directional buttons, but it will be useful to keep in mind if i do add the mouse functionality

P#126685 2023-03-06 22:18

actually, i was confused, because i did originally plan to use 64×64, but i was unable to do so because of the ui. so this is actually using full 128×128! regardless, tweaking the mouse speed would definitely be one step of implementing this, as would most likely centering the cursor on the mouse instead of it being on the corner

P#126687 2023-03-06 22:59

[Please log in to post a comment]