Skip to content

Commit f2ae192

Browse files
committed
Second demo
1 parent a64ad9b commit f2ae192

26 files changed

+1789
-7
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Normalize EOL for all files that Git considers text files.
2+
* text=auto eol=lf

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Godot 4+ specific ignores
2+
.godot/
3+
/android/

addons/block_code/blocks/communication/area2d_on_entered.tres

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ description = ""
1010
category = "Communication | Methods"
1111
type = 1
1212
variant_type = 0
13-
display_template = "On [body: OBJECT] entered"
14-
code_template = "func _on_body_entered(body: Node2D):
13+
display_template = "On [area: OBJECT] entered"
14+
code_template = "func _on_area_entered(area: Node2D):
1515
"
1616
defaults = {}
17-
signal_name = "body_entered"
17+
signal_name = "area_entered"
1818
scope = ""

addons/block_code/blocks/communication/area2d_on_exited.tres

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ description = ""
1010
category = "Communication | Methods"
1111
type = 1
1212
variant_type = 0
13-
display_template = "On [body: OBJECT] exited"
14-
code_template = "func _on_body_exited(body: Node2D):
13+
display_template = "On [area: OBJECT] exited"
14+
code_template = "func _on_area_exited(area: Node2D):
1515
"
1616
defaults = {}
17-
signal_name = "body_entered"
17+
signal_name = "area_entered"
1818
scope = ""

asset-sources/player.kra

275 KB
Binary file not shown.

asset-sources/split.kra

411 KB
Binary file not shown.

asset-sources/tile-01.kra

25.7 KB
Binary file not shown.

asset-sources/tile-02.kra

70.6 KB
Binary file not shown.

asset-sources/tiles.kra

772 KB
Binary file not shown.

assets/floor-tile.png

4.56 KB
Loading

0 commit comments

Comments
 (0)