DEV Community

Discussion on: Post an Elegant Code Snippet You Love.

Collapse
 
godot profile image
Godot

Perhaps I'm the one here that post non brackets-semicolon snippets, It's GDScript. But here you go

class_name Player extends Node2D

var health := 100

func _ready():
    pass

func take_damage(damage_amount):
    health -= damage_amount
    if health <= 0:
        die()

func die():
    # Implement player death logic here
    queue_free()  # Destroy the player node

Enter fullscreen mode Exit fullscreen mode