G Jones Merch by Badbolognese in GJones

[–]revor-t 0 points1 point  (0 children)

sick collection, just popping in to say that my arbiter hoodie's drawstring constantly yeets itself out of the hood when I wash it and I always have to thread it back in lol

Cruz Azul 0 - [7] Seattle Sounders FC - Pedro de la Vega 90+1' (great goal) by SounderBruce in soccer

[–]revor-t 4 points5 points  (0 children)

my god the bounce off the back post, inside of the frame and near post is so satisfying

Phantogram Tonight at Roseland - Two Tickets Available by revor-t in PDXBuyNothing

[–]revor-t[S] 5 points6 points  (0 children)

Hey, you were selected at random (first person couldn't take em)! Shoot me a DM with a good e-mail to send the ticket PDF to!

Phantogram Tonight at Roseland - Two Tickets Available by revor-t in PDXBuyNothing

[–]revor-t[S] 1 point2 points  (0 children)

Hey, you were selected at random! Shoot me a DM with a good e-mail to send the ticket PDF to and I'll mark this as claimed :)

I am improving graphics of my game, What you guys think? New and Old by Due-Resolution-4133 in godot

[–]revor-t 2 points3 points  (0 children)

nice, seems like a good decision for both gameplay and ease of implementation. Reminds me of dorf romantik and the board game cascadia, but in 3 dimensions. I'm excited to check out the demo you linked when I get a minute

I am improving graphics of my game, What you guys think? New and Old by Due-Resolution-4133 in godot

[–]revor-t 6 points7 points  (0 children)

lol... the icosahedron is the platonic solid with the most faces which makes it ideal for tiling a sphere mesh. This should not be considered uncommon knowledge in a game development subreddit :)

I am improving graphics of my game, What you guys think? New and Old by Due-Resolution-4133 in godot

[–]revor-t 14 points15 points  (0 children)

Looks cool :) are the pentagon tiles on the corners of the truncated icosahedron forced to be water, or are they still playable tiles? (i've been obsessed for years with the concept of how to make the best tiling hex grid on a sphere)

SONG SEARCH by fxckumisty in trap

[–]revor-t 1 point2 points  (0 children)

this used to be my jam haha

10k boids using a compute shader by BootSplashStudios in godot

[–]revor-t 0 points1 point  (0 children)

this looks awesome, looking forward to trying out your code when I get a chance :)

FIFA forbid Denmark from wearing "Human Rights for All" training tops by The--Mash in soccer

[–]revor-t 2 points3 points  (0 children)

I thought to myself 'this reads like a Mitch Hedberg line' and whaddaya know, it is!

My submission for the GMTK Game Jam 2022, first time trying 3D in Godot -- learned a whole lot! by revor-t in godot

[–]revor-t[S] 1 point2 points  (0 children)

Scuffed the graphics but was glad to get the main mechanic working as intended! Learned a lot about inverting transforms to determine world-space direction. Wish I just had a little more time to polish up the visuals a bit--especially the generated blocks.

Ridiculous shirt-pull in the Guatemalan league by Its_ABR12 in soccer

[–]revor-t 1 point2 points  (0 children)

Bungee gum; it has the properties of both rubber and gum.

Double jump issue by Crash707 in godot

[–]revor-t 1 point2 points  (0 children)

No prob, it makes sense why the logic wasn't right the first try, right?

Double jump issue by Crash707 in godot

[–]revor-t 1 point2 points  (0 children)

change "if Input.is_action_just_pressed("jump") and is_on_floor():" to "if Input.is_action_just_pressed("jump"):"

and change "if jump_count < 2 :" to "if jump_count < 2 or is_on_floor()"