Ternary Operators
Keys
Z - Toggle the alive/dead state
X - Show/hide the logic
Code
Below is an implementation of the code in the above explanation. For it to be useful, you need two different sprites in #001 and #002.
function _init() a=true --alive? b=1 --sprite:alive c=2 --sprite:dead x,y=60,60 end function _update() if (btnp(4)) a=not a --flip/flop a end function _draw() spr(a and b or c,x,y) end
Status | Released |
Platforms | HTML5 |
Author | MBoffin (Dylan Bennett) |
Genre | Simulation, Educational |
Made with | PICO-8 |
Tags | PICO-8 |
Comments
Log in with itch.io to leave a comment.
Cool, thank you for sharing!
This is very new stuff for me. Thanks for the info !