Log In  
Follow
dawnblairr
[ :: Read More :: ]

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:

Cart #10219 | 2015-04-26 | Code ▽ | Embed ▽ | No License
5


My little sister asked to make a game with me! This is as far as we got today.

P#10220 2015-04-25 22:38 ( Edited 2015-04-30 10:10)

[ :: Read More :: ]

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

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

P#10020 2015-04-19 20:36 ( Edited 2015-04-20 02:54)

[ :: Read More :: ]

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
P#9986 2015-04-19 03:37 ( Edited 2015-04-19 07:37)

[ :: Read More :: ]
P#9985 2015-04-19 03:37 ( Edited 2015-04-20 00:32)

[ :: Read More :: ]

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

P#9981 2015-04-19 01:41 ( Edited 2015-04-19 05:46)