diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-05-23 14:11:43 +0200 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-05-23 14:11:43 +0200 |
commit | 06647b11ee163bc40daf454d87e1fcae563c3ced (patch) | |
tree | 866823ed79fa1c3bbdcb8b0be417f028f0c92d9b /Scenes/Maps/World3.gd | |
parent | 276b7664bd4a475a3ca93a682c16b49c504c58f7 (diff) |
update
Diffstat (limited to 'Scenes/Maps/World3.gd')
-rw-r--r-- | Scenes/Maps/World3.gd | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Scenes/Maps/World3.gd b/Scenes/Maps/World3.gd index d9e8399..1daecb9 100644 --- a/Scenes/Maps/World3.gd +++ b/Scenes/Maps/World3.gd @@ -31,31 +31,19 @@ func _ready(): get_node("Areas/Beta01/Transitions/Height1").body_entered.connect(func(body): body.z_index = 3 - if body is Player: - print(body.z_index) ) get_node("Areas/Beta01/Transitions/Height1").body_exited.connect(func(body): body.z_index = 0 - if body is Player: - print(body.z_index) ) get_node("Areas/Beta01/Transitions/Height2").body_entered.connect(func(body): body.z_index = 5 - if body is Player: - print(body.z_index) ) get_node("Areas/Beta01/Transitions/Height2").body_exited.connect(func(body): body.z_index = 3 - if body is Player: - print(body.z_index) ) get_node("Areas/Beta02/Transitions/Height1").body_entered.connect(func(body): body.z_index = 3 - if body is Player: - print(body.z_index) ) get_node("Areas/Beta02/Transitions/Height1").body_exited.connect(func(body): body.z_index = 0 - if body is Player: - print(body.z_index) ) |