Log In  
Follow
Ummmm_ok

i should go to bed

[ :: Read More :: ]

thanks @jasondelaat !
is there a way i can produce a sine wave effect (not unlike celeste classic 2) but in any direction?
and in a line-like function? such as
rotated_sine_wave(x, y, direction, length, amp, wavelength, c)

P#136708 2023-10-31 22:26 ( Edited 2023-11-01 20:33)

[ :: Read More :: ]

Cart #physics_attempt-0 | 2023-09-30 | Code ▽ | Embed ▽ | No License
2

i'm prepared for explanations that may contain math.
i have been working on this for too long over many attempts. it kinda works but there are definitely still issues.

i'm having problems with...

  • normal calculations being off only some of the time
  • when a shape returns to it's normal size, another the shape it collided with previously will get stuck inside
  • shapes hovering 1 pixel over the ground???
  • shapes are very bouncy
  • shapes will not stay on other shapes (line segments can't collide with singular points)
  • jiggle (i'll implement damping later on.)
  • and cpu (not a priority yet, AABB tree later)

there are some comments that will hopefully help you find the issues in constrain() and shape_collision()

thanks

P#135145 2023-09-30 07:04 ( Edited 2023-09-30 07:13)

[ :: Read More :: ]

Cart #ummmm_ok_moonnight-2 | 2023-04-04 | Code ▽ | Embed ▽ | No License
15

❤️ happy birthday mi amigo!!! ❤️

arrow keys to move, c to jump.

in the pause menu you can change it to easy mode :)

update: more checkpoints, removed some random bugs, removed ability to change difficulty after completion, added miliseconds

P#128104 2023-04-04 06:07 ( Edited 2023-04-04 19:46)

[ :: Read More :: ]

Cart #ummmm_ok_tree_gen-3 | 2023-03-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8


a tree generator i made for some music i also made. then i realised the music was crap but it's still in the cart if you want to listen to it.

use the left and right buttons to change the wind speed, down to set it back to 0.

some trees are better than others :)

P#126485 2023-03-02 00:35 ( Edited 2023-03-02 04:48)

[ :: Read More :: ]

Cart #ummmm_ok_raycaster2-0 | 2023-02-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


ok it's better now, but runs at 1 fps and idek how to optimize it cos reading is too hard. in the for all in rays loop i've commented out something that doesn't work for some reason? help please

P#125862 2023-02-14 21:28

[ :: Read More :: ]

Cart #ummmm_ok_map_generator-1 | 2023-09-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

not particularly special. it's mostly annoying and you can just follow an obvious path to the end.

arrow keys to move, X to restart, O to place a breadcrumb, go to the star.

it's heavily commented in case you wanna look at that.

P#125702 2023-02-11 01:11 ( Edited 2023-09-06 03:51)

[ :: Read More :: ]

Cart #ummmm_ok_raycaster-0 | 2023-02-03 | Code ▽ | Embed ▽ | No License

ok here's this. i want the edges to be clearer cos right now the view is fisheye. and idk how i should add clarity to the walls to distinguish them from walls behind them. thanks!

arrow keys to move, c to switch to overhead view

P#125258 2023-02-03 21:51 ( Edited 2023-02-03 22:03)

[ :: Read More :: ]

Cart #starjump_pico_cover-2 | 2022-11-30 | Code ▽ | Embed ▽ | No License
9


i did a cover of starjump from Celeste for @ooooggll and thought i should put it here :)

i quite love love love starjump but couldn't do it justice (especially the baseline, anxiety parts) but whatever hope you like it.

P#121651 2022-11-30 23:39

[ :: Read More :: ]

Cart #the_harvest-1 | 2022-10-31 | Code ▽ | Embed ▽ | No License
6

harvest

P#119922 2022-10-31 22:05 ( Edited 2022-10-31 22:05)

[ :: Read More :: ]

Cart #blue_space-0 | 2022-09-19 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10


Just some music and a little demo for a school assignment.
Some inspiration from Dandara :)

edit, made drumbeat more noticeable, changed graphics, more tweetcart besides music.

P#117636 2022-09-18 22:31 ( Edited 2022-09-19 12:28)

[ :: Read More :: ]

Cart #snakes-0 | 2022-07-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Welcome to Snakes!

Play with a friend or against the computer for the crown!

Use the arrow keys to control the red snake, and X and O to control the blue snake.
Collect various fruits and objects to increase your score and length, or, power up.

Radish -

Adds 1 to your score.

Feather -

Speeds you up for 15 seconds.

Shield -

Makes you invincible for 15 seconds.

Peach -

Adds 5 to your score.

But watch out!

Make sure to avoid blockades and other snakes!

I would absolutely LOVE to see you make an A.I. Go ahead! Please.

P#114833 2022-07-26 00:41

[ :: Read More :: ]

Cart #shipgame-0 | 2022-06-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

little spaceship game i made. as per usual, started out simple, then had me bashing my head against the wall with frustration. but it turned out in the end.

explore the galaxy! follow the markers to find star clusters!
steer the ship with ⬅️ and ➡️! control your speed with ⬆️/🅾️ and ⬇️! hold ❎ to hyperjump to a new galaxy!

P#113036 2022-06-12 00:20

[ :: Read More :: ]

Cart #platformerbase-0 | 2022-03-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Platformer base. I'll do something with this later.

P#108073 2022-03-05 01:24

[ :: Read More :: ]

Not sure if bugs is the right place to put this...

Is it possible to retrieve a variable within a table within a table within a table and so on?

tables = {
   table = {
   a = {x=0,y=0}
   b = {x=64,y=94}
   c = {x=0,y=0}
   }
}

print(tables.table[2][2],0,0,1) -- this is not how it works

If I wanted to print "b.x" and "c.y" at the same time in the most conventional way possible, how would I go about that?

P#100873 2021-11-27 04:17

[ :: Read More :: ]

Cart #the_sun_what_how-0 | 2021-08-14 | Code ▽ | Embed ▽ | No License
5


WHAT THE SUN!?

it was midnight and i was struck with a good idea

P#95992 2021-08-14 03:34 ( Edited 2022-10-23 03:20)

[ :: Read More :: ]

Cart #celeste_stars-0 | 2021-06-30 | Code ▽ | Embed ▽ | No License
10

I can't seem to get the heart to finish my games.

P#94244 2021-06-30 17:39

[ :: Read More :: ]

Cart #unstableberries-1 | 2021-06-01 | Code ▽ | Embed ▽ | No License
8

Oh no! These berries are pretty unstable!

P#92873 2021-06-01 03:24 ( Edited 2021-06-01 03:25)

[ :: Read More :: ]

Cart #yerotawaru-0 | 2021-03-26 | Code ▽ | Embed ▽ | No License
4

P#91514 2021-05-05 00:39

[ :: Read More :: ]

I've recently created a cart and I have next to no clue on how to publish carts! I've put them out on something but when I go to the "carts" tab in my profile, they don't show up. Could someone please help me with this problem.

P#91352 2021-05-01 04:08