how do i fix this bug?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Dylised

i cant open scenes

Please put your code in the question.

SteveSmith | 2022-12-03 09:31

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

Juxxec | 2022-12-03 10:58

Ever heard of Github?

SteveSmith | 2022-12-03 11:13

:bust_in_silhouette: Reply From: Juxxec

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.