Fix brick throwing, add enemy death

This commit is contained in:
2025-01-05 06:41:53 +01:00
parent 5b558f9c3b
commit 697a9b7deb
44 changed files with 1061 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
@tool
extends Fluid2D
@export var height := 10:
set(value):
if height != value:
height = value
points = create_rectangle_points(width, height)
get:
return height
@export var width := 10:
set(value):
if width != value:
width = value
points = create_rectangle_points(width, height)
get:
return width