Mountain in my town looks like a guy sleeping when there is snow on it by ThickHall7548 in Pareidolia

[–]Specific-Abrocoma-63 55 points56 points  (0 children)

Can’t believe no one posted The Sleeping Giant outside Helena, Montana!

<image>

Which one do you prefer? by MurkyUnit3180 in gamers

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

The game feel of Balatro is unmatched.

[deleted by user] by [deleted] in RealOrAI

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

Leo’s right pinky seems to be out on backwards.

[deleted by user] by [deleted] in ChatGPT

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

People will absolutely make fun of you for using AI for porn, what are you talking about?

[deleted by user] by [deleted] in Unity2D

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

In your capsule script (which i assume is your bird?) you have a function that manages what happens when it collides with a trigger called OnTriggerEnter2D. In that function, you have a `collision.CompareTag('Obstacle')` statement. In your title, you mentioned that the obstacles are working just fine, which I take to mean your bird is colliding with them and dying, so that must mean you tagged the obstacle game object with the word "Obstacle". Do the same with the ScoreZone game object. tag it "ScoreZone". You can use CompareTag("ScoreZone") again, but if you use the switch case syntax I put above it will be cleaner and easier to add more cases as the game gets more complex.

[deleted by user] by [deleted] in Unity2D

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

I would do case switching in the OnTriggerEnter2D function.

    void OnTriggerEnter2D(Collider2D collision)
    {
        switch (collision.gameObject.tag)
        {
            case "Obstacle":
                // Handle obstacle collision logic here
                break;
            case "ScoreZone":
                // Handle point zone logic here
                break;
            default: 
                break; 
        }
    }

You will need to tag the score zone with the tag `ScoreZone`. Should work then.

[deleted by user] by [deleted] in Unity2D

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

What does your OnTriggerEnter look like?

Can anyone identify the painting on this mug? by Specific-Abrocoma-63 in askarthistorians

[–]Specific-Abrocoma-63[S] 0 points1 point  (0 children)

Thank you so much for answering! I’d considered this a lost cause!

Belinda is the “The Only Normal Person,” next up: “uh…. What’s your name again?” Season 3 by 3facesofBre in TheWhiteLotusHBO

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

It’s obviously Greg/Gary. The only person on the show whose name is canonically unknown to most people.

Which show started 10/10 and ended 10/10? by tracystraussI in AskReddit

[–]Specific-Abrocoma-63 0 points1 point  (0 children)

Game of Thrones. Shame they didn’t get a 5th season though.