614
you are viewing a single comment's thread
view the rest of the comments
[-] cookie_sabotage@sh.itjust.works 159 points 6 months ago
public class GameManager : MonoBehaviour
{
    public bool EnableHighContrast;
    public bool PlayerWon;
    public float PlayerUnitsMoved;
    public int PlayerDeathCount;
    public float PlayerHealth;

    public void PlayerTakeDamage(float damage)
    {
        PlayerHealth -= damage;
        if (PlayerHealth < 0)
        {
            PlayerDieAndRespawn();
        }
    }

    public void PlayerDieAndRespawn()
    {
        return;
    }
}

I couldn't contain myself.

[-] wise@feddit.uk 57 points 6 months ago

Should it be

PlayerHealth <= 0

?

Otherwise the player could have 0 health and not die? I’m sleep deprived so forgive me if I’m wrong

[-] bassomitron@lemmy.world 27 points 6 months ago
[-] wise@feddit.uk 54 points 6 months ago

Counting this meme as my first FOSS contribution

[-] SidewaysHighways@lemmy.world 12 points 6 months ago

Holy shit I was there with you sir! With the zeros and stuff

load more comments (7 replies)
load more comments (14 replies)
this post was submitted on 28 Mar 2024
614 points (98.1% liked)

Programmer Humor

32245 readers
190 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS