added the game

This commit is contained in:
JHDev2006
2025-09-13 16:30:32 +01:00
parent 5ef689109b
commit 3773bdaf64
3616 changed files with 263702 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class_name CoinHeavenWarpPoint
extends Node2D
@export_file("*.tscn") var heaven_scene := ""
func _ready() -> void:
Level.vine_warp_level = heaven_scene
if Level.in_vine_level and PipeArea.exiting_pipe_id == -1:
Level.in_vine_level = false
for i in get_tree().get_nodes_in_group("Players"):
i.global_position = global_position
i.reset_physics_interpolation()
i.recenter_camera()