Log In  
Follow
dawnblairr

Sorry, this cartridge is not currently available.
by
Cart #10269 | 2015-04-28 | Code ▽ | Embed ▽ | No License

thanks guys! :D We've added an updated version that now uses a rather scary looking "MASTERBUN/GLITCHBUN" to draw all of the sprites (except the chubby one), using pal() to recolour the different areas as needed to save space.

We went from 6 sets of 2x2 sprites at 4 frames each (96 sprite-blocks) to only 2 sets (32 sprite blocks, + potential for more buns). This is especially important since we have not decided if we want to use the shared memory space for sprites or for the map.

The only problem is that pal(x, 0) remaps x to actual black instead of transparent, as I expected. Unless I find a work around I will have to create additional master-sprites for bunnies with bows on one and both ears (bringing the total back up to 64 blocks), which is really too bad.

This is my first time programming a game myself (and the first time working with my sister!) and I'm really please with how things are going. If anyone knows the solution to the transparency/black problem, I'd love to hear it!

old version:

[ Continue Reading.. ]

5
5 comments



Cart #10028 | 2015-04-20 | Code ▽ | Embed ▽ | No License
1

Remaking/demaking my team's first Global Game Jam entry, Less Than Slash Three.

1
0 comments



by
Cart #9984 | 2015-04-19 | Code ▽ | Embed ▽ | No License

I can't seem to figure out the issue with my code.
I am trying to draw some circles at coordinates stored in nested arrays, and while i can retrieve the coordinates to print them the circles do not seem to draw. I do not get an error, nothing seems to show up?

--coords for cube
nodes = {}
nodes[1] = {-10, -10, -10}
nodes[2] = {-10, -10,  10}
nodes[3] = {-10,  10, -10}
nodes[4] = {-10,  10,  10}
nodes[5] = { 10, -10, -10}
nodes[6] = { 10, -10,  10}
nodes[7] = { 10,  10, -10}
nodes[8] = { 10,  10,  10}
--these circles will not draw??
	for i=1,8 do 
		circfill(
		nodes[i][1], 
		nodes[i][2], 
		nodesize)
	end
0 comments






Cart #9980 | 2015-04-19 | Code ▽ | Embed ▽ | No License
1


Cart #9979 | 2015-04-19 | Code ▽ | Embed ▽ | No License
1

I am pretty new to programming, and I think pico-8 is a really fun way to practice!
Really enjoying the console so far :D

1
0 comments