diff options
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) ) |