Add developers/.gdignore; let Godot 4 canonicalise saved scenes

The developers/aurelien sandbox scenes still reference legacy non-LOD
mesh paths (sm_book.mesh, sm_candlestick.mesh, ...) that don't exist
anymore — the production scenes were migrated to *_lod0/1/2.mesh.
Godot's full-project file scanner reads every .tscn at editor open
and emits 'Cannot open file' errors for each broken ext_resource,
even for scenes that the game never loads.

Mark developers/ as out-of-scope for Godot's filesystem walker with
a .gdignore at its root. The .import / .uid sidecars Godot had
generated for files inside (CheckLightmap.exr.import,
CheckLightmap.gd.uid) are auto-removed by the editor since they are
now orphaned metadata — only the source files (.tscn, .gd, .exr,
.lmbake) remain. Re-enabling the sandbox later just means deleting
the .gdignore; Godot will regenerate the sidecars.

The other diffs in this commit are Godot 4 canonicalising whatever
.tscn / .tres files were touched in the editor session that ran the
LightmapGI bake attempt: ext_resource uid= attributes added, format
bumped 2 -> 3, property order normalised. No behavioural change.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Vaillant Jeremy
2026-05-16 22:24:19 +02:00
parent 6146d84b87
commit d61a0ffcb0
44 changed files with 666 additions and 1155 deletions
+30 -16
View File
@@ -1,8 +1,8 @@
[gd_scene format=3]
[gd_scene format=3 uid="uid://cyxlaf1u2nhjn"]
[ext_resource type="PackedScene" path="res://scenes/UI/loading/parts/LoadingBare.tscn" id="1"]
[ext_resource type="PackedScene" path="res://scenes/UI/loading/parts/TopPart.tscn" id="2"]
[ext_resource type="PackedScene" path="res://scenes/UI/background/Background.tscn" id="3"]
[ext_resource type="PackedScene" uid="uid://t4bee0w11cj2" path="res://scenes/UI/loading/parts/LoadingBare.tscn" id="1"]
[ext_resource type="PackedScene" uid="uid://dxvg52gd5h1kh" path="res://scenes/UI/loading/parts/TopPart.tscn" id="2"]
[ext_resource type="PackedScene" uid="uid://edbpygl0vh8c" path="res://scenes/UI/background/Background.tscn" id="3"]
[sub_resource type="Animation" id="1"]
resource_name = "BorderAnim"
@@ -29,26 +29,40 @@ tracks/1/keys = {
"times": PackedFloat32Array(0, 0.4)
}
[node name="Control" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
[sub_resource type="AnimationLibrary" id="AnimationLibrary_ygatp"]
_data = {
&"BorderAnim": SubResource("1")
}
[node name="BackgroundPicture" parent="." instance=ExtResource("3")]
layout_mode = 1
[node name="Control" type="Control" unique_id=1398968538]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="LoadingTopBorder" parent="." instance=ExtResource("2")]
[node name="BackgroundPicture" parent="." unique_id=2027281585 instance=ExtResource("3")]
layout_mode = 1
grow_horizontal = 2
grow_vertical = 2
[node name="LoadingTopBorder" parent="." unique_id=218348086 instance=ExtResource("2")]
layout_mode = 0
anchors_preset = 0
anchor_right = 0.0
anchor_bottom = 0.0
offset_top = 0.362091
offset_bottom = 0.362061
grow_vertical = 1
[node name="LoadingBare" parent="." instance=ExtResource("1")]
[node name="LoadingBare" parent="." unique_id=1550577651 instance=ExtResource("1")]
layout_mode = 0
anchors_preset = 0
anchor_right = 0.0
anchor_bottom = 0.0
offset_top = 360.0
[node name="AnimLoading" type="AnimationPlayer" parent="."]
method_call_mode = 1
anims/BorderAnim = SubResource("1")
[node name="AnimLoading" type="AnimationPlayer" parent="." unique_id=1450388645]
callback_mode_method = 1
libraries/ = SubResource("AnimationLibrary_ygatp")
+9 -13
View File
@@ -1,28 +1,24 @@
[gd_scene format=3]
[gd_scene format=3 uid="uid://c8wq3txgsbayx"]
[node name="Tile" type="VBoxContainer"]
[node name="Tile" type="VBoxContainer" unique_id=689859814]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
size_flags_horizontal = 3
[node name="MarginContainer" type="MarginContainer" parent="."]
offset_right = 1280.0
offset_bottom = 237.0
[node name="MarginContainer" type="MarginContainer" parent="." unique_id=2052541719]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="BorderLeft" type="ColorRect" parent="."]
offset_top = 241.0
offset_right = 1280.0
offset_bottom = 478.0
[node name="BorderLeft" type="ColorRect" parent="." unique_id=1201756514]
custom_minimum_size = Vector2(0, 8)
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
color = Color(0.74902, 0.701961, 0.65098, 1)
[node name="MarginContainer2" type="MarginContainer" parent="."]
offset_top = 482.0
offset_right = 1280.0
offset_bottom = 720.0
[node name="MarginContainer2" type="MarginContainer" parent="." unique_id=31910865]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
+8 -11
View File
@@ -1,9 +1,10 @@
[gd_scene format=3]
[gd_scene format=3 uid="uid://ct7qxiscklbm8"]
[ext_resource type="FontVariation" path="res://assets/fonts/kirsty/kirsty_title.tres" id="1"]
[ext_resource type="Script" path="res://scenes/UI/loading/Loading.gd" id="2"]
[ext_resource type="FontVariation" uid="uid://bqx3uv23bwjul" path="res://assets/fonts/kirsty/kirsty_title.tres" id="1"]
[ext_resource type="Script" uid="uid://dsma7tpjx5f65" path="res://scenes/UI/loading/Loading.gd" id="2"]
[node name="VBoxLoading" type="VBoxContainer"]
[node name="VBoxLoading" type="VBoxContainer" unique_id=854342834]
anchors_preset = 8
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
@@ -17,16 +18,12 @@ size_flags_vertical = 0
theme_override_constants/separation = 0
alignment = 1
script = ExtResource("2")
__meta__ = {
"_edit_use_anchors_": false
}
[node name="LabelLoading" type="Label" parent="."]
offset_right = 193.0
offset_bottom = 56.0
[node name="LabelLoading" type="Label" parent="." unique_id=673745546]
layout_mode = 2
theme_override_colors/font_color = Color(0.74902, 0.701961, 0.65098, 1)
theme_override_fonts/font = ExtResource("1")
theme_override_font_sizes/font_size = 46
theme_override_colors/font_color = Color(0.74902, 0.701961, 0.65098, 1)
text = "loading"
horizontal_alignment = 1
vertical_alignment = 2
+20 -31
View File
@@ -1,44 +1,37 @@
[gd_scene format=3]
[gd_scene format=3 uid="uid://t4bee0w11cj2"]
[ext_resource type="Theme" path="res://assets/ui/themes/leather.theme" id="1"]
[node name="LoadingBare" type="Control"]
[node name="LoadingBare" type="Control" unique_id=1614726848]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
grow_horizontal = 2
grow_vertical = 2
[node name="VBoxContainer" type="VBoxContainer" parent="."]
[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=1258548453]
layout_mode = 0
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer"]
offset_right = 1280.0
offset_bottom = 237.0
[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer" unique_id=144824491]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
offset_top = 241.0
offset_right = 1280.0
offset_bottom = 478.0
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer" unique_id=1257929124]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="HSplitContainer" type="HSplitContainer" parent="VBoxContainer/HBoxContainer"]
offset_right = 238.0
offset_bottom = 237.0
[node name="HSplitContainer" type="HSplitContainer" parent="VBoxContainer/HBoxContainer" unique_id=1650805636]
layout_mode = 2
size_flags_horizontal = 3
size_flags_stretch_ratio = 0.3
[node name="ProgressBar" type="ProgressBar" parent="VBoxContainer/HBoxContainer"]
offset_left = 242.0
offset_right = 1037.0
offset_bottom = 237.0
[node name="ProgressBar" type="ProgressBar" parent="VBoxContainer/HBoxContainer" unique_id=2054750986]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
theme = ExtResource("1")
@@ -46,16 +39,12 @@ max_value = 1.0
step = 0.1
rounded = true
[node name="HSplitContainer2" type="HSplitContainer" parent="VBoxContainer/HBoxContainer"]
offset_left = 1041.0
offset_right = 1280.0
offset_bottom = 237.0
[node name="HSplitContainer2" type="HSplitContainer" parent="VBoxContainer/HBoxContainer" unique_id=462638225]
layout_mode = 2
size_flags_horizontal = 3
size_flags_stretch_ratio = 0.3
[node name="MarginContainer2" type="MarginContainer" parent="VBoxContainer"]
offset_top = 482.0
offset_right = 1280.0
offset_bottom = 720.0
[node name="MarginContainer2" type="MarginContainer" parent="VBoxContainer" unique_id=371664312]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
+26 -52
View File
@@ -1,87 +1,61 @@
[gd_scene format=3]
[gd_scene format=3 uid="uid://dxvg52gd5h1kh"]
[ext_resource type="PackedScene" path="res://scenes/UI/loading/parts/LabelLoading.tscn" id="1"]
[ext_resource type="PackedScene" path="res://scenes/UI/loading/parts/BorderColor.tscn" id="2"]
[ext_resource type="Texture2D" path="res://assets/ui/themes/bck-hrz-grd.png" id="3"]
[ext_resource type="PackedScene" uid="uid://ct7qxiscklbm8" path="res://scenes/UI/loading/parts/LabelLoading.tscn" id="1"]
[ext_resource type="PackedScene" uid="uid://c8wq3txgsbayx" path="res://scenes/UI/loading/parts/BorderColor.tscn" id="2"]
[ext_resource type="Texture2D" uid="uid://c0ddrujen604n" path="res://assets/ui/themes/bck-hrz-grd.png" id="3"]
[node name="LoadingBorder" type="Control"]
[node name="LoadingBorder" type="Control" unique_id=167487990]
clip_contents = true
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
clip_contents = true
size_flags_horizontal = 3
size_flags_vertical = 3
__meta__ = {
"_edit_use_anchors_": false
}
[node name="BackgroundGradient" type="VBoxContainer" parent="."]
[node name="BackgroundGradient" type="VBoxContainer" parent="." unique_id=1476252897]
layout_mode = 0
anchor_right = 1.0
anchor_bottom = 1.0
theme_override_constants/separation = 0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="BlackColor" type="ColorRect" parent="BackgroundGradient"]
offset_right = 1280.0
offset_bottom = 240.0
[node name="BlackColor" type="ColorRect" parent="BackgroundGradient" unique_id=1692081529]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
color = Color(0, 0, 0, 1)
[node name="ColorRect" type="TextureRect" parent="BackgroundGradient"]
offset_top = 240.0
offset_right = 1280.0
offset_bottom = 480.0
[node name="ColorRect" type="TextureRect" parent="BackgroundGradient" unique_id=1221457874]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
texture = ExtResource("3")
expand_mode = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MarginContainer" type="MarginContainer" parent="BackgroundGradient"]
offset_top = 480.0
offset_right = 1280.0
offset_bottom = 720.0
[node name="MarginContainer" type="MarginContainer" parent="BackgroundGradient" unique_id=658862845]
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 3
[node name="LabelAndBorder" type="HBoxContainer" parent="."]
[node name="LabelAndBorder" type="HBoxContainer" parent="." unique_id=1120691617]
clip_contents = true
layout_mode = 0
anchor_top = 0.5
anchor_right = 1.0
anchor_bottom = 0.5
offset_top = -30.0
offset_bottom = 30.0
clip_contents = true
size_flags_vertical = 5
theme_override_constants/separation = 20
alignment = 1
__meta__ = {
"_edit_use_anchors_": false
}
[node name="BorderLeft" parent="LabelAndBorder" instance=ExtResource("2")]
anchor_right = 0.0
anchor_bottom = 0.0
offset_right = 523.0
offset_bottom = 60.0
[node name="BorderLeft" parent="LabelAndBorder" unique_id=492130723 instance=ExtResource("2")]
layout_mode = 2
[node name="LabelLoading" parent="LabelAndBorder" instance=ExtResource("1")]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
offset_left = 543.0
offset_top = 0.0
offset_right = 736.0
offset_bottom = 56.0
[node name="LabelLoading" parent="LabelAndBorder" unique_id=1883632327 instance=ExtResource("1")]
layout_mode = 2
[node name="BorderRight" parent="LabelAndBorder" instance=ExtResource("2")]
anchor_right = 0.0
anchor_bottom = 0.0
offset_left = 756.0
offset_right = 1280.0
offset_bottom = 60.0
[node name="BorderRight" parent="LabelAndBorder" unique_id=1411830674 instance=ExtResource("2")]
layout_mode = 2