The Godot Q&A is currently undergoing maintenance!

Your ability to ask and answer questions is temporarily disabled. You can browse existing threads in read-only mode.

We are working on bringing this community platform back to its full functionality, stay tuned for updates.

godotengine.org | Twitter

–1 vote
Godot version 3.5.1
in Engine by (39 points)

Please put your code in the question.

You need to upload your whole project to Google Drive so that we will be able to point you to the problem.

Ever heard of Github?

1 Answer

+1 vote

You can open the .tscn file that is failing to load with notepad or some other text editor and make sure that all paths inside are correct.

A scene file looks something like this:

[gd_scene load_steps=11 format=2]

[ext_resource path="res://textures/dice.png" type="Texture" id=1]
[ext_resource path="res://scripts/ui/Dice.gd" type="Script" id=2]

[sub_resource type="AtlasTexture" id=1]
atlas = ExtResource( 1 )
region = Rect2( 1, 0, 64, 64 )
...

Notice how you have path="res://... lines. You need to update those to point to valid files in your project. Also, note that the path is case-sensitive, i.e. small and capital letters matter.

by (294 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.