extends Sprite const ColorUtil = preload("res://utility/ColorUtil.gd") func _refresh_look(life: int) -> void: modulate = ColorUtil.color_from_life(life) func _on_Brick_life_changed(life: int): _refresh_look(life)