frame-of-mind/src/base-environments/transition/stations/burnout_station.gd

6 lines
223 B
GDScript3
Raw Normal View History

extends Node3D
func _ready() -> void:
State.room.save_game.subway_burnout = true
2026-01-21 00:54:01 +00:00
%PlayerDetect.body_entered.connect(func(body): if visible and body is PlayerController: State.room.proceed.emit(Main.adulthood_room_path))