Log In  
Follow
anefiox

Cart #possiblyendlessgolf-0 | 2023-11-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Possibly Endless Golf Demake

This is a demake of Possibly Endless Golf

I've always wanted to write a procedurally generated game and love chilled out golf games. This did actually start as a pico-8 project but I couldn't get the level generation correct so I moved to Monogame as I have more experience with C#. Once I finished my first Steam release. I thought I'd come back and finish what I started, now that I understood how to generate levels.

Aim of the game is to get the ball in the square hole.

Controls:
left/right to move the direction arrow
up/down to modify the power bar

[ Continue Reading.. ]

7
10 comments



Cart #perfectfit-1 | 2023-03-20 | Code ▽ | Embed ▽ | No License
2

I've written a small game about fitting a block through a gap. The smaller the gap the better the score. Left/right buttons move the left paddle in that direction and the right in the opposite direction. The Z button drops the block and you can also use the X button to pause the game but I might remove this. The block reduces in size each time you are successful and the game speeds up once you get through all size of block.

I'd like to add menus, a level select with how well you've done in each level and maybe some music.

I've also now ported this to iOS: https://apps.apple.com/tt/app/perfect-fit-block-drop/id6449626297 and Android: https://play.google.com/store/apps/details?id=com.anefiox.PerfectFitBlockDrop

2
2 comments



Cart #invertworld-4 | 2022-10-27 | Code ▽ | Embed ▽ | No License
5

I have finally released my first game/demo for pico-8! It's and endless runner that it's main concept is that you can flip or invert the world. The idea came about after reading through the Playdate SDK and seeing there was a way to flip the colours on the 1bit display. I thought I'd prototype on pico-8 first and then port to the Playdate console. The port is going well and I hope to have it released by the weekend. I will attach a link to an itch.io page when it is ready.

The code is not the most efficient but if I do decide to extend this then I will work on not loading in and inverting the whole map on each Z button press.

CONTROLS
-- UP or X to jump
-- Z to invert the world

[ Continue Reading.. ]

5
2 comments



Cart #diving2022-0 | 2022-04-21 | Code ▽ | Embed ▽ | No License

Hi all,
I'm new to pico-8 and enjoying the constraints. I'm trying to create a diving game inspired by the old Daily Thompson's supertest game on the Amstrad. I have my scene with jumping working but I'm having issues rotating the sprite once you press left or right. I'm trying to use @freds72 rotation code and something is obviously rotating but I don't understand the parameters of the function. Is this correct?

--sx = x location of sprite on spritesheet
--sy = y location of sprite on spritesheet
--x = is this for the rotation area?
--y = is this for the rotation area?
a = angle of rotation
w = width of sprite (although mine is rectangular)
rspr(sx,sy,x,y,a,w)

Once I've got rotation sorted. I'm going to figure out number of turns and angle of the divers head relative to the water, so I can get the judges scoring in. I think my next big challenge will probably be getting the board to bend when hit.

Thanks for taking a look. Hopefully I can release something more playable soon.

2 comments