Log In  


Cart #hugoyezise-1 | 2025-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Hi everyone!

This is my first cart, and it's a particle cloud simulation. A simple one with grid optimization.

Also I noticed that PICO-8 doesn't completely remove an element from tables when you do something like table[key] = nil. To solve this I had to implement timed table clears, otherwise the app would just crash from running out of memory. Is it a bug or intended behavior?

3


Not entirely sure, but doing del(table, table[key]) might work better than setting directly to nil.


Nope, as far as I know del and deli work primarily with array-like tables. Anyway, I tried to use them and the result was the same :(



[Please log in to post a comment]