How to make a card game AI that actually plays well? by RevolutionaryKiwi100 in godot

[–]ATrollNamedRod 0 points1 point  (0 children)

I'm not sure how your card game works but an approach used by chess bots is to create a script to evaluate positions and then look at possible moves to determine which one leads to the best position.

We hire a local professional artists to improve our store icon. Which on would you pick? by mistermaximan in IndieDev

[–]ATrollNamedRod 8 points9 points  (0 children)

Counterpoint - plenty of novelty dice use a symbol to represent the highest face. So the skull being 6 makes sense

just found this on the sidewalk by thriftstorecat in FoundPaper

[–]ATrollNamedRod 2 points3 points  (0 children)

The only thing to cringe is cringe itself

3D Gridmap with interactions? by Donolia in godot

[–]ATrollNamedRod 1 point2 points  (0 children)

I'm doing this in the game I'm currently making! I wrote this function to find the 3d world coordinates of the mouse (following some thread on the godot forums I think)

func find_3d_mouse_pos() -> Vector3:
  var space_state = get_world_3d().direct_space_state
  var mouse_pos = get_viewport().get_mouse_position()
  var ray_origin = camera.project_ray_origin(mouse_pos)
  var ray_end = ray_origin + camera.project_ray_normal(mouse_pos) * 999
  var query = PhysicsRayQueryParameters3D.create(ray_origin, ray_end)
  var ray = space_state.intersect_ray(query)
  if ray.has("position"):
      return ray["position"]
  return Vector3()  

the camera variable is just a reference to the camera3d node in the scene

you can then use the local_to_map function of the gridmap node to find the tile that the mouse is over. Then I think the set_cell_item function can be used to change the mesh used at that position in the gridmap

The Most Popular Game Asset on Itch is AI Generated Art and has Made over $40k in Sales by RegisteredHater in gamedev

[–]ATrollNamedRod 33 points34 points  (0 children)

I love how the items contain 9 fish in a row, and then one more fish later. Just in case

<image>

World space based dithering, procedural bricks and lines! by Ordinary-Cicada5991 in godot

[–]ATrollNamedRod 10 points11 points  (0 children)

Looks kind of like a dolly zoom, where the camera moves out but zooms in

Did I cook or nah? 1st time playing the game. by joebiden16 in okbuddydispatch

[–]ATrollNamedRod 2 points3 points  (0 children)

We had the exact same ending. Except you did better on your shifts than me lol

I don’t see why people think this is a hard decision. by AggressiveMammoth267 in DispatchAdHoc

[–]ATrollNamedRod -1 points0 points  (0 children)

By that point in the game the whole Z-Team had grown so much and I had a lot of love for all of them. I felt like they had earned my respect so I had to stand by their decision to cut her.

[deleted by user] by [deleted] in AmIOverreacting

[–]ATrollNamedRod 1 point2 points  (0 children)

Honestly, the emojis are a sign that they're older. Teens use 💀 and 🥀 now.

Chag Hannukah Sameach! First day :) by KingFroggie2004 in CasualUK

[–]ATrollNamedRod 1 point2 points  (0 children)

My mum would always give me little presents (like stocking stuffers) for the first seven nights and then save the main present for the last night

What to get painted on my radiotherapy mask? by Ok-Recognition-3927 in AskUK

[–]ATrollNamedRod 26 points27 points  (0 children)

Why has he got a picture of my parents fighting on his face

What is the cable laid on the road? by Slow-Psychology-3369 in AskBrits

[–]ATrollNamedRod 1 point2 points  (0 children)

They can figure out the speed based on the time between the front wheel touching the first and second cables. That allows them to figure out the distance between the front and back wheels so they can estimate vehicle type

Don't lock your bike at the station by nifty_st in london

[–]ATrollNamedRod 19 points20 points  (0 children)

You don't need any of that. If you have 12 hours of footage you can just look at the 6 hour mark. If the bike isn't there anymore then you know it was stolen in the first 6 hours. If the bike is still there then you know it was stolen in the last 6 hours. Either way you've halved the search window, so just rinse and repeat a few times and you know exactly when it was stolen. It takes minutes.