refactor: organise assets, tidy player.gd, unbreak fresh import

Assets grouped by role, within the constraint that FBX materials resolve
their textures by path relative to the FBX itself (verified by forcing a
reimport and reading back the albedo paths):

  assets/level/   scene.fbx + Level1_v1.fbx + the platform maps they look
                  up as siblings
  assets/logos/   the three attribution logos
  assets/         chara_red.fbx, background.fbx — these reach up into
                  ../sourceimages and so cannot move
  sourcefiles/    scene.blend, behind a .gdignore

The .blend move is a bug fix, not tidying. Godot hands every importable
.blend to a headless Blender, and that call never returns on this project
— a fresh clone stalls on first import, and the machine still had orphaned
Blender processes from an earlier attempt. Nothing loads the .blend: the
level geometry is baked into level_1.tscn.

player.gd: spell out ct/bt/d/ix/a, type the physics step, group the
members, and point the blue skin at sourceimages/low_blue_mat_* — the same
files assets/Chara_blue/ was a byte-identical copy of.

Co-Authored-By: Claude Opus 5 <[email protected]>
This commit is contained in:
ASOwnerYT
2026-07-28 13:29:42 +12:00
co-authored by Claude Opus 5
parent 756d404d7f
commit f5a17e2c22
42 changed files with 137 additions and 101 deletions
Binary file not shown.
+46
View File
@@ -0,0 +1,46 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://cvu5f82j7vxdl"
path="res://.godot/imported/Level1_v1.fbx-057b7bbcfd96046aa01265df55d6c0f0.scn"
[deps]
source_file="res://assets/level/Level1_v1.fbx"
dest_files=["res://.godot/imported/Level1_v1.fbx-057b7bbcfd96046aa01265df55d6c0f0.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
mesh_library/use_node_names_as_mesh_names=false
array_mesh/deduplicate_surfaces=true
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
nodes/use_node_type_suffixes=true
meshes/ensure_tangents=true
meshes/generate_lods=true
meshes/create_shadow_meshes=true
meshes/light_baking=1
meshes/lightmap_texel_size=0.2
meshes/force_disable_compression=false
skins/use_named_skins=true
animation/import=true
animation/fps=30
animation/trimming=true
animation/remove_immutable_tracks=true
animation/import_rest_as_RESET=false
import_script/path=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
fbx/importer=0
fbx/allow_geometry_helper_nodes=false
fbx/embedded_image_handling=1
fbx/naming_version=2
Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

@@ -0,0 +1,42 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bo0602fd212nj"
path.s3tc="res://.godot/imported/platforms_standardSurface1_BaseColor_Utility - sRGB - Texture.1001.png-ad8b8e29a824591a12240216aa85250b.s3tc.ctex"
path.etc2="res://.godot/imported/platforms_standardSurface1_BaseColor_Utility - sRGB - Texture.1001.png-ad8b8e29a824591a12240216aa85250b.etc2.ctex"
metadata={
"imported_formats": ["s3tc_bptc", "etc2_astc"],
"vram_texture": true
}
[deps]
source_file="res://assets/level/platforms_standardSurface1_BaseColor_Utility - sRGB - Texture.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface1_BaseColor_Utility - sRGB - Texture.1001.png-ad8b8e29a824591a12240216aa85250b.s3tc.ctex", "res://.godot/imported/platforms_standardSurface1_BaseColor_Utility - sRGB - Texture.1001.png-ad8b8e29a824591a12240216aa85250b.etc2.ctex"]
[params]
compress/mode=2
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=true
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0
Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ok4qnq61otv6"
path="res://.godot/imported/platforms_standardSurface1_Height_Utility - Raw.1001.png-777b30503394249f52f49e41ba5bf8ae.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface1_Height_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface1_Height_Utility - Raw.1001.png-777b30503394249f52f49e41ba5bf8ae.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://crj7sefmt2awi"
path="res://.godot/imported/platforms_standardSurface1_Metallic_Utility - Raw.1001.png-b81b84c1a5c3dcf3075d1db6d41ccf71.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface1_Metallic_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface1_Metallic_Utility - Raw.1001.png-b81b84c1a5c3dcf3075d1db6d41ccf71.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c1bf2s6x0nxsc"
path="res://.godot/imported/platforms_standardSurface1_Normal_Utility - Raw.1001.png-e6101e66d16870d4a647bc2c3c5fb4a4.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface1_Normal_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface1_Normal_Utility - Raw.1001.png-e6101e66d16870d4a647bc2c3c5fb4a4.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://byhrhfh6djv4n"
path="res://.godot/imported/platforms_standardSurface1_Roughness_Utility - Raw.1001.png-f5b24f62e5750889bc87da5d3091c4ed.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface1_Roughness_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface1_Roughness_Utility - Raw.1001.png-f5b24f62e5750889bc87da5d3091c4ed.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://clmvuvi0y4t4w"
path="res://.godot/imported/platforms_standardSurface3_BaseColor_Utility - sRGB - Texture.1001.png-70449054549b50b9927be5743373522e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface3_BaseColor_Utility - sRGB - Texture.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface3_BaseColor_Utility - sRGB - Texture.1001.png-70449054549b50b9927be5743373522e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dwfpnjyx05fp6"
path="res://.godot/imported/platforms_standardSurface3_Height_Utility - Raw.1001.png-2fa47e5532f267e08a1945b38ff2340a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface3_Height_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface3_Height_Utility - Raw.1001.png-2fa47e5532f267e08a1945b38ff2340a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://deegjbiilo4qh"
path="res://.godot/imported/platforms_standardSurface3_Metallic_Utility - Raw.1001.png-8ae6b39f540d1f7687eb0502425b6574.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface3_Metallic_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface3_Metallic_Utility - Raw.1001.png-8ae6b39f540d1f7687eb0502425b6574.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b3f4nljeeaxuf"
path="res://.godot/imported/platforms_standardSurface3_Normal_Utility - Raw.1001.png-8952996cb064639fe8fa29b4f8450a94.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface3_Normal_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface3_Normal_Utility - Raw.1001.png-8952996cb064639fe8fa29b4f8450a94.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://o5ku8w30ow3n"
path="res://.godot/imported/platforms_standardSurface3_Roughness_Utility - Raw.1001.png-77c7c4d5028b159fed9adbb7040090fc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/level/platforms_standardSurface3_Roughness_Utility - Raw.1001.png"
dest_files=["res://.godot/imported/platforms_standardSurface3_Roughness_Utility - Raw.1001.png-77c7c4d5028b159fed9adbb7040090fc.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
Binary file not shown.
+46
View File
@@ -0,0 +1,46 @@
[remap]
importer="scene"
importer_version=1
type="PackedScene"
uid="uid://d4nq16vll1epw"
path="res://.godot/imported/scene.fbx-bfc065eeab6a4eafe3b83ff308ad422d.scn"
[deps]
source_file="res://assets/level/scene.fbx"
dest_files=["res://.godot/imported/scene.fbx-bfc065eeab6a4eafe3b83ff308ad422d.scn"]
[params]
nodes/root_type=""
nodes/root_name=""
nodes/root_script=null
mesh_library/use_node_names_as_mesh_names=false
array_mesh/deduplicate_surfaces=true
nodes/apply_root_scale=true
nodes/root_scale=1.0
nodes/import_as_skeleton_bones=false
nodes/use_name_suffixes=true
nodes/use_node_type_suffixes=true
meshes/ensure_tangents=true
meshes/generate_lods=true
meshes/create_shadow_meshes=true
meshes/light_baking=1
meshes/lightmap_texel_size=0.2
meshes/force_disable_compression=false
skins/use_named_skins=true
animation/import=true
animation/fps=30
animation/trimming=true
animation/remove_immutable_tracks=true
animation/import_rest_as_RESET=false
import_script/path=""
materials/extract=0
materials/extract_format=0
materials/extract_path=""
_subresources={}
fbx/importer=0
fbx/allow_geometry_helper_nodes=false
fbx/embedded_image_handling=1
fbx/naming_version=2