Is my simply glitch sound
WARRING
Sounds uses a sfx() uses for i,num do uses a poke() poke2() poke4() sorry sounds is glitchy
Thankes to @zep
Nazarpaint is mod for Wobblepaint origianly created by @zep
Version 1.0 BETA
What's Nazarpaint?
Nazarpaint or Nazar's Wobblepaint like a Wobblepaint by @zep but changes
Changed backround color
Save your drawing
(C) 2024 @NazarFloppaLovesP8
Is Tracker Test by JackNet in TIC-80 im recreated in PICO-8
Pulse wave notes C D# G A#
011000000c4500f4501345016450184501b4501f4502245024450274502b4502e4503045033450374503a4500c4500f4501345016450184501b4501f4502245024450274502b4502e4503045033450374503a450 |
Hello guys Im made Sample of Lynx Playing sample in 8-bit and good quality
Credits
Code @NazarFloppaLovesP8
PCM Sampler @bikibird

Hey guys
Im made IGO-800 palette in PICO-8!
use pal
API for make PICO-8 palette like a IGO-800 palette
Palette
({[0]=129,400,50,60,530,340,705,23,62,8,64,4,7,1,10},1)
IGO-800 palette cartridges
https://drive.google.com/drive/folders/1xAQUGNNsfULS_Vv_6DqEEC_Fx0bn_S6i
Is experiment on pal and rnd im add in function _init and function _update60
Photo of caracal im use Depict and im open file PICO-8 cartridge and paste in gfx

Is test of worm
Code
a={} for i=1,20 do b={} b.x=64 b.y=64 add(a,b) end function _update() if (btn(0)) a[1].x-=1 sfx(0) if (btn(1)) a[1].x+=1 sfx(0) if (btn(2)) a[1].y-=1 sfx(0) if (btn(3)) a[1].y+=1 sfx(0) for i=2,20 do a[i].x=a[i].x*0.8+a[i-1].x*0.2 a[i].y=a[i].y*0.8+a[i-1].y*0.2 end end function _draw() cls() for z in all(a) do spr(1,z.x,z.y) end end |