abel0910 [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=49144 zopowunida <p> <table><tr><td> <a href="/bbs/?pid=87646#p"> <img src="/bbs/thumbs/pico8_zopowunida-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=87646#p"> the asteroid belt</a><br><br> by <a href="/bbs/?uid=49144"> abel0910</a> <br><br><br> <a href="/bbs/?pid=87646#p"> [Click to Play]</a> </td></tr></table> </p> <p>finally finished something, the basics were made in one day, prob 5 hours, then kept adding effects and sound, planning on adding transitions with dithering!</p> https://www.lexaloffle.com/bbs/?tid=41570 https://www.lexaloffle.com/bbs/?tid=41570 Mon, 15 Feb 2021 00:23:20 UTC sinwaveee <p> <table><tr><td> <a href="/bbs/?pid=87572#p"> <img src="/bbs/thumbs/pico8_sinwaveee-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=87572#p"> sinwaveee</a><br><br> by <a href="/bbs/?uid=49144"> abel0910</a> <br><br><br> <a href="/bbs/?pid=87572#p"> [Click to Play]</a> </td></tr></table> </p> <p>sine wave viewer to study the sin() function</p> https://www.lexaloffle.com/bbs/?tid=41538 https://www.lexaloffle.com/bbs/?tid=41538 Sat, 13 Feb 2021 02:21:56 UTC center text <p>easy way to center any text on the screen, just copy and paste the hcenter(s)</p> <p>function _init()</p> <p>-- table with all the text</p> <p>texts={</p> <p><code>a=&quot;center text&quot;,</code></p> <p><code>b=&quot;easy&quot;,</code></p> <p><code>c=&quot;compact&quot;,</code></p> <p><code>e=&quot;simple&quot;</code></p> <p><code>}</code></p> <p>end</p> <p>function _draw()</p> <p>cls()</p> <p>print(texts.a,hcenter(texts.a),64,7)</p> <p>print(texts.b,hcenter(texts.b),70,7)</p> <p>print(texts.c,hcenter(texts.c),76,7)</p> <p>print(texts.e,hcenter(texts.e),82,7)</p> <p>end</p> <p>function hcenter(s)</p> <p>-- takes a string</p> <p>-- gets 64, rests the string</p> <p>-- lenght and multiplys by 2</p> <p>return 64-#s*2<br /> end</p> <img style="margin-bottom:16px" border=0 src="/media/49144/basics_002.png" alt="" /> https://www.lexaloffle.com/bbs/?tid=41528 https://www.lexaloffle.com/bbs/?tid=41528 Fri, 12 Feb 2021 20:38:02 UTC