Activity
Mon
Wed
Fri
Sun
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
What is this?
Less
More

Memberships

SpaceCat's Game Dev Heroes!

125 members โ€ข Free

14 contributions to SpaceCat's Game Dev Heroes!
--good collide system in pico 8--
I want to make a collision system in PICO-8 for objects (not tiles). But I donโ€™t want the collision to use the full 8x8 sprite box โ€” like with spikes, I only want it to trigger when the player touches the sharp part. Whatโ€™s the best way to do this in code?
0 likes โ€ข 39m
@Marko ZakrajsekThx
--laser room--
here is my new project (laser room)๐Ÿ˜ its about robot in laser room try to ovoid lasers Do you like it??? ๐Ÿ™‚
--laser room--
Itโ€™s back! The Farming Game Series!
Hereโ€™s how to make a stardew-inspired simple farming game! Episode 1 is out now!
1 like โ€ข 14d
Yeah i see it. It was good!๐Ÿ˜๐Ÿ‘
Challenge: MAKE A DOOR.
This week, open up Pico. Make a door that opens and closes! Maybe make it a fancy door??? Show me what u got!!!
0 likes โ€ข 15d
Here is it.๐Ÿ˜ƒ๐Ÿ˜ƒ its not that difficult๐Ÿคฅ --Here is the code-- door={ sp=1, x=64, y=64, opened=false } function _update() local d=door if btnp(โฌ†๏ธ) and not d.opened then d.opened=true sfx(0) elseif btnp(โฌ‡๏ธ) and d.opened then d.opened=false sfx(1) end if not d.opened then d.sp=1 end if d.opened and btnp(โŽ) then d.sp=2 elseif btnp(โŽ) and not d.opened then sfx(2) end end function _draw() local d=door cls() spr(d.sp,d.x,d.y) print(d.opened) end
--Clouds system--
--I mad e a small project. its a clouds spawn system.-- -Is it good?๐Ÿค” -Need your feedback. --here is the code-- clouds={} function make_clouds() c={} c.x=rnd(160) c.y=rnd(60) c.spd=rnd(0.5)+0.2 add(clouds,c) end function update_clouds() for c in all(clouds) do c.x+=c.spd if c.x>128 then c.x=-16 c.y=rnd(60) end end end function draw_clouds() for c in all(clouds) do spr(1,c.x,c.y,2,2) end end function _init() for i=1,15 do make_clouds() end end function _update() update_clouds() end function _draw() cls(12) draw_clouds() end
--Clouds system--
1 like โ€ข 15d
thx man
1-10 of 14
Youssef Badawy
2
9points to level up
@youssef-badawy-4191
I am just a teenager who wants to be creative.

Active 38m ago
Joined Aug 24, 2025
Powered by