This site is currently in read-only mode during migration to a new platform.
You cannot post questions, answers or comments, as they would be lost during the migration otherwise.
0 votes

I need to make a 2d door that when you run into it it changes over to a different scene how should I do this

Godot version 3.3.2
in Engine by (37 points)

Can you do it now?
Or is there anything else you want to know?

I haven't been able to test it yet but I will soon thankyou for providing the code

Ok!
Please mark the answer if it works :)

1 Answer

+2 votes

Make your door Area2D and connect its body_entered signal then you can use it to change your scene

func _on_Door_body_entered(body):
    if body.name == "Player": # Make sure that the body is Player
        get_tree().change_scene("res://next_level")
by (942 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.