Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EditorFileSystem: Add verbose print for file being (re)imported #88904

Merged
merged 1 commit into from
Feb 29, 2024

Conversation

akien-mga
Copy link
Member

I needed this to pinpoint which file caused a crash in #88903, so I figured this would be good to add as a verbose print in general.

Copy link
Member

@Calinou Calinou left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense to me. We could perhaps print the time taken to reimport the file once the import is done too, so you can use this for benchmarking the import speed of individual resources.

Also print the time it took for each file.
@akien-mga
Copy link
Member Author

We could perhaps print the time taken to reimport the file once the import is done too, so you can use this for benchmarking the import speed of individual resources.

Sounds good to me. Added that.

Here's some example output (cut when it started importing glb's as this spams a ton, we should clean this up a bit maybe).

EditorFileSystem: Importing file: res://DemoPage/Fonts/Montserrat-Bold.ttf
EditorFileSystem: Importing file: res://DemoPage/Fonts/Montserrat-Medium.ttf
Importing dynamic font from: res://DemoPage/Fonts/Montserrat-Bold.ttf
Importing dynamic font from: res://DemoPage/Fonts/Montserrat-Medium.ttf
Saving to: res://.godot/imported/Montserrat-Medium.ttf-9d8d2119fd890c2e3ca56ec78c926a91.fontdata
Saving to: res://.godot/imported/Montserrat-Bold.ttf-257e34a39865240a009b88cdee11a55a.fontdata
Done saving to: res://.godot/imported/Montserrat-Medium.ttf-9d8d2119fd890c2e3ca56ec78c926a91.fontdata
Done saving to: res://.godot/imported/Montserrat-Bold.ttf-257e34a39865240a009b88cdee11a55a.fontdata
EditorFileSystem: "res://DemoPage/Fonts/Montserrat-Bold.ttf" import took 19 ms.
EditorFileSystem: "res://DemoPage/Fonts/Montserrat-Medium.ttf" import took 18 ms.
EditorFileSystem: Importing file: res://Player/Coin/Audio/completetask_0.mp3
EditorFileSystem: Importing file: res://Level/Music/mountain.mp3
EditorFileSystem: "res://Player/Coin/Audio/completetask_0.mp3" import took 2 ms.
EditorFileSystem: "res://Level/Music/mountain.mp3" import took 24 ms.
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/cliff_motif.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/cliff_mat_albedo.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_normal.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/grass_mat_orm.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/grass_mat_albedo.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/cliff_mat_normal.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/cliff_mat_orm.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/ground_mat_albedo.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/cliff_mat_depth.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_heightmap.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/grass_mat_normal.png
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_orm.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 14 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/ground_mat_albedo.png" import took 78 ms.
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_albedo.png
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 46 ms.
etcpak: Encoding image size 1024x1024 to format RGTC RedGreen8, with mipmaps.
EditorFileSystem: "res://Environment/Terrain/Textures/cliff_mat_albedo.png" import took 218 ms.
EditorFileSystem: Importing file: res://Environment/simple_leaves/simple_leaves_orm.png
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 87 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/cliff_mat_orm.png" import took 234 ms.
EditorFileSystem: Importing file: res://Environment/simple_leaves/simple_leaves_normal.png
etcpak: Encoding took 37 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/cliff_mat_normal.png" import took 242 ms.
EditorFileSystem: Importing file: res://Environment/simple_leaves/simple_leaves_albedo.png
etcpak: Encoding took 58 ms.
etcpak: Encoding took 64 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/cliff_motif.png" import took 261 ms.
EditorFileSystem: Importing file: res://Environment/orange_flowers/orange_flower_pink_flower_normal.png
etcpak: Encoding took 73 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/cliff_mat_depth.png" import took 265 ms.
EditorFileSystem: Importing file: res://Environment/orange_flowers/orange_flower_pink_flower_albedo.png
etcpak: Encoding image size 128x128 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding took 0 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/grass_mat_orm.png" import took 269 ms.
EditorFileSystem: "res://Environment/orange_flowers/orange_flower_pink_flower_normal.png" import took 8 ms.
EditorFileSystem: Importing file: res://Environment/orange_flowers/orange_flower_Image_3.png
EditorFileSystem: Importing file: res://Environment/orange_flowers/orange_flower_Image.png
etcpak: Encoding image size 128x128 to format DXT5 RGBA8, with mipmaps.
etcpak: Encoding took 1 ms.
EditorFileSystem: "res://Environment/orange_flowers/orange_flower_pink_flower_albedo.png" import took 11 ms.
EditorFileSystem: Importing file: res://Environment/orange_flowers/orange_flower_flower_blade_normal.png
EditorFileSystem: "res://Environment/orange_flowers/orange_flower_Image_3.png" import took 8 ms.
EditorFileSystem: Importing file: res://Environment/orange_flowers/orange_flower_flower_blade_albedo.png
EditorFileSystem: "res://Environment/orange_flowers/orange_flower_Image.png" import took 12 ms.
EditorFileSystem: Importing file: res://Environment/mushroom/mushroom_mushroom_normal.png
etcpak: Encoding image size 128x192 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding took 55 ms.
etcpak: Encoding took 1 ms.
etcpak: Encoding image size 1024x1024 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding image size 128x192 to format DXT5 RGBA8, with mipmaps.
etcpak: Encoding took 0 ms.
EditorFileSystem: "res://Environment/orange_flowers/orange_flower_flower_blade_normal.png" import took 10 ms.
EditorFileSystem: Importing file: res://Environment/mushroom/mushroom_mushroom_albedo.png
EditorFileSystem: "res://Environment/orange_flowers/orange_flower_flower_blade_albedo.png" import took 10 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/trunk_top/trunk_top_orm.png
EditorFileSystem: "res://Environment/Terrain/Textures/grass_mat_albedo.png" import took 292 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/trunk_top/trunk_top_normal.png
etcpak: Encoding took 58 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/grass_mat_normal.png" import took 326 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/trunk_top/trunk_top_albedo.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 17 ms.
etcpak: Encoding image size 512x512 to format RGTC RedGreen8, with mipmaps.
EditorFileSystem: "res://Environment/large_tree_trunk/trunk_top/trunk_top_orm.png" import took 53 ms.
EditorFileSystem: Importing file: res://icon.svg
etcpak: Encoding took 6 ms.
etcpak: Encoding image size 128x128 to format DXT5 RGBA8, with mipmaps.
etcpak: Encoding took 1 ms.
EditorFileSystem: "res://icon.svg" import took 7 ms.
EditorFileSystem: Importing file: res://icon.png
EditorFileSystem: "res://Environment/mushroom/mushroom_mushroom_normal.png" import took 67 ms.
EditorFileSystem: Importing file: res://shared/eye_mask.png
EditorFileSystem: "res://shared/eye_mask.png" import took 5 ms.
EditorFileSystem: Importing file: res://shared/textures/eye_mask.png
EditorFileSystem: "res://shared/textures/eye_mask.png" import took 5 ms.
EditorFileSystem: Importing file: res://Player/model/faces/open.png
etcpak: Encoding image size 256x256 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 2 ms.
etcpak: Encoding image size 512x512 to format RGTC RedGreen8, with mipmaps.
EditorFileSystem: "res://Player/model/faces/open.png" import took 14 ms.
EditorFileSystem: Importing file: res://Player/model/faces/closed.png
etcpak: Encoding took 16 ms.
EditorFileSystem: "res://Environment/large_tree_trunk/trunk_top/trunk_top_normal.png" import took 87 ms.
EditorFileSystem: Importing file: res://Player/GrenadeVisuals/textures/target_mask.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 256x256 to format DXT1 RGB8, with mipmaps.
EditorFileSystem: "res://icon.png" import took 34 ms.
EditorFileSystem: Importing file: res://Player/GrenadeVisuals/textures/target_frame_mask.png
etcpak: Encoding took 2 ms.
etcpak: Encoding image size 512x512 to format DXT5 RGBA8, with mipmaps.
EditorFileSystem: "res://Player/model/faces/closed.png" import took 13 ms.
EditorFileSystem: Importing file: res://Player/GrenadeVisuals/textures/direction_arrow.png
etcpak: Encoding image size 256x256 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 256x256 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 1 ms.
etcpak: Encoding took 5 ms.
etcpak: Encoding took 2 ms.
etcpak: Encoding image size 128x128 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 1 ms.
etcpak: Encoding took 11 ms.
EditorFileSystem: "res://Player/GrenadeVisuals/textures/target_frame_mask.png" import took 10 ms.
EditorFileSystem: Importing file: res://Player/BulletVisuals/sparks.png
EditorFileSystem: "res://Player/GrenadeVisuals/textures/target_mask.png" import took 13 ms.
EditorFileSystem: Importing file: res://Level/gridbox_texture.png
EditorFileSystem: "res://Player/GrenadeVisuals/textures/direction_arrow.png" import took 7 ms.
EditorFileSystem: Importing file: res://JumpingPad/JumpingPadVisuals/cross_sprite.png
EditorFileSystem: "res://Environment/mushroom/mushroom_mushroom_albedo.png" import took 107 ms.
EditorFileSystem: Importing file: res://icons/flash_icon.png
etcpak: Encoding image size 64x64 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 0 ms.
EditorFileSystem: "res://Environment/large_tree_trunk/trunk_top/trunk_top_albedo.png" import took 69 ms.
EditorFileSystem: Importing file: res://icons/bomb_icon.png
etcpak: Encoding image size 128x64 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 0 ms.
EditorFileSystem: "res://Player/BulletVisuals/sparks.png" import took 4 ms.
EditorFileSystem: Importing file: res://Environment/terrain_bridge_planks_roughness.png
EditorFileSystem: "res://JumpingPad/JumpingPadVisuals/cross_sprite.png" import took 5 ms.
EditorFileSystem: Importing file: res://Environment/terrain_bridge_planks_albedo.png
EditorFileSystem: "res://icons/flash_icon.png" import took 6 ms.
EditorFileSystem: Importing file: res://Environment/water/textures/caustic_texture.png
EditorFileSystem: "res://icons/bomb_icon.png" import took 6 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_pine_leaves/simple_pin_leaves_orm.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 14 ms.
EditorFileSystem: "res://Level/gridbox_texture.png" import took 46 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_pine_leaves/simple_pin_leaves_normal.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 512x512 to format DXT5 RGBA8, with mipmaps.
etcpak: Encoding took 21 ms.
etcpak: Encoding took 53 ms.
EditorFileSystem: "res://Environment/terrain_bridge_planks_roughness.png" import took 80 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_pine_leaves/simple_pin_leaves_albedo.png
etcpak: Encoding took 9 ms.
EditorFileSystem: "res://Environment/simple_leaves/simple_leaves_orm.png" import took 264 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_bark/simple_bark_orm.png
EditorFileSystem: "res://Environment/terrain_bridge_planks_albedo.png" import took 90 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_bark/simple_bark_normal.png
etcpak: Encoding image size 1024x1024 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding image size 1024x1024 to format DXT5 RGBA8, with mipmaps.
etcpak: Encoding image size 512x512 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 20 ms.
etcpak: Encoding took 12 ms.
etcpak: Encoding image size 2048x2048 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 17 ms.
EditorFileSystem: "res://Environment/trees/simple_bark/simple_bark_normal.png" import took 82 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_bark/simple_bark_mask.png
EditorFileSystem: "res://Environment/trees/simple_bark/simple_bark_orm.png" import took 89 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_bark/simple_bark_heightmap.png
EditorFileSystem: "res://Environment/simple_leaves/simple_leaves_albedo.png" import took 334 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_bark/simple_bark_depth.png
etcpak: Encoding took 64 ms.
EditorFileSystem: "res://Environment/simple_leaves/simple_leaves_normal.png" import took 354 ms.
EditorFileSystem: Importing file: res://Environment/trees/simple_bark/simple_bark_albedo.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 14 ms.
EditorFileSystem: "res://Environment/trees/simple_bark/simple_bark_albedo.png" import took 56 ms.
EditorFileSystem: Importing file: res://Environment/Terrain/Textures/ground_mat_normal.png
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding image size 1024x1024 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding took 92 ms.
EditorFileSystem: "res://Environment/trees/simple_pine_leaves/simple_pin_leaves_orm.png" import took 314 ms.
EditorFileSystem: Importing file: res://Enemies/BeeBot/wing_pattern.png
etcpak: Encoding image size 72x112 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 3 ms.
EditorFileSystem: "res://Enemies/BeeBot/wing_pattern.png" import took 7 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/wasd.png
etcpak: Encoding image size 512x512 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding took 65 ms.
EditorFileSystem: "res://DemoPage/ControllerIcons/wasd.png" import took 5 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/up_button.png
etcpak: Encoding image size 2048x2048 to format DXT1 RGB8, with mipmaps.
EditorFileSystem: "res://DemoPage/ControllerIcons/up_button.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/tab.png
EditorFileSystem: "res://Environment/trees/simple_bark/simple_bark_heightmap.png" import took 160 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/spacebar.png
etcpak: Encoding took 266 ms.
EditorFileSystem: "res://DemoPage/ControllerIcons/tab.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/spacebar2.png
EditorFileSystem: "res://DemoPage/ControllerIcons/spacebar.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/right_button.png
etcpak: Encoding took 18 ms.
EditorFileSystem: "res://Environment/trees/simple_pine_leaves/simple_pin_leaves_normal.png" import took 297 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/r2_button.png
EditorFileSystem: "res://DemoPage/ControllerIcons/right_button.png" import took 3 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/mouseRight.png
EditorFileSystem: "res://DemoPage/ControllerIcons/r2_button.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/mouseLeft.png
EditorFileSystem: "res://Environment/Terrain/Textures/ground_mat_normal.png" import took 96 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/mouse.png
EditorFileSystem: "res://DemoPage/ControllerIcons/mouseRight.png" import took 3 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/minus.png
etcpak: Encoding image size 1024x1024 to format DXT5 RGBA8, with mipmaps.
EditorFileSystem: "res://DemoPage/ControllerIcons/spacebar2.png" import took 6 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/left_button.png
EditorFileSystem: "res://DemoPage/ControllerIcons/mouseLeft.png" import took 3 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/l2_button.png
EditorFileSystem: "res://DemoPage/ControllerIcons/mouse.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/keyboard.png
EditorFileSystem: "res://DemoPage/ControllerIcons/left_button.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/joystickR_side.png
EditorFileSystem: "res://DemoPage/ControllerIcons/minus.png" import took 6 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/joystickL_side.png
EditorFileSystem: "res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_orm.png" import took 748 ms.
EditorFileSystem: "res://DemoPage/ControllerIcons/l2_button.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/gamepad.png
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/esc.png
EditorFileSystem: "res://DemoPage/ControllerIcons/joystickR_side.png" import took 3 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/down_button.png
EditorFileSystem: "res://DemoPage/ControllerIcons/joystickL_side.png" import took 3 ms.
EditorFileSystem: Importing file: res://DemoPage/ControllerIcons/buttonStart.png
EditorFileSystem: "res://DemoPage/ControllerIcons/esc.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/Assets/twitter-icon.png
EditorFileSystem: "res://DemoPage/ControllerIcons/down_button.png" import took 3 ms.
EditorFileSystem: Importing file: res://DemoPage/Assets/RoundedRectangle.png
EditorFileSystem: "res://DemoPage/ControllerIcons/keyboard.png" import took 10 ms.
EditorFileSystem: Importing file: res://DemoPage/Assets/itch-icon.png
EditorFileSystem: "res://DemoPage/ControllerIcons/buttonStart.png" import took 3 ms.
EditorFileSystem: Importing file: res://DemoPage/Assets/gdquest_logo_white.svg
EditorFileSystem: "res://DemoPage/ControllerIcons/gamepad.png" import took 7 ms.
EditorFileSystem: Importing file: res://DemoPage/Assets/discord-icon.png
EditorFileSystem: "res://DemoPage/Assets/RoundedRectangle.png" import took 4 ms.
EditorFileSystem: Importing file: res://DemoPage/Assets/DemoPageBackground.png
etcpak: Encoding took 18 ms.
EditorFileSystem: "res://DemoPage/Assets/gdquest_logo_white.svg" import took 9 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/moss/moss_depth.png
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
EditorFileSystem: "res://Environment/trees/simple_pine_leaves/simple_pin_leaves_albedo.png" import took 293 ms.
EditorFileSystem: Importing file: res://Enemies/beetle_bot/beetle_bot_fused_beetle_albedo.png
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
EditorFileSystem: "res://DemoPage/Assets/discord-icon.png" import took 26 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/moss/moss_albedo.png
EditorFileSystem: "res://DemoPage/Assets/itch-icon.png" import took 30 ms.
EditorFileSystem: Importing file: res://Enemies/beetle_bot/beetle_bot_fused_beetle_normal.png
EditorFileSystem: "res://DemoPage/Assets/twitter-icon.png" import took 41 ms.
EditorFileSystem: Importing file: res://Enemies/beetle_bot/beetle_bot_fused_beetle_roughness.png
etcpak: Encoding took 79 ms.
etcpak: Encoding took 59 ms.
EditorFileSystem: "res://Environment/trees/simple_bark/simple_bark_mask.png" import took 246 ms.
EditorFileSystem: Importing file: res://Enemies/beetle_bot/beetle_bot_fused_eye_mask.png
etcpak: Encoding image size 32x32 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 0 ms.
EditorFileSystem: "res://Environment/trees/simple_bark/simple_bark_depth.png" import took 241 ms.
EditorFileSystem: Importing file: res://Enemies/beetle_bot/beetle_bot_fused_Image.png
EditorFileSystem: "res://Enemies/beetle_bot/beetle_bot_fused_eye_mask.png" import took 3 ms.
EditorFileSystem: Importing file: res://Environment/flowers/textures/flower_head_normal.png
etcpak: Encoding image size 256x256 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 6 ms.
EditorFileSystem: "res://Environment/flowers/textures/flower_head_normal.png" import took 23 ms.
EditorFileSystem: Importing file: res://Environment/dark_bark/dark_bark_albedo.png
EditorFileSystem: "res://Environment/water/textures/caustic_texture.png" import took 481 ms.
EditorFileSystem: Importing file: res://Environment/flowers/textures/flower_head_albedo.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 15 ms.
etcpak: Encoding image size 256x256 to format DXT5 RGBA8, with mipmaps.
etcpak: Encoding took 2 ms.
EditorFileSystem: "res://Environment/dark_bark/dark_bark_albedo.png" import took 82 ms.
etcpak: Encoding took 349 ms.
EditorFileSystem: Importing file: res://Environment/dark_bark/dark_bark_orm.png
EditorFileSystem: "res://Environment/flowers/textures/flower_head_albedo.png" import took 44 ms.
EditorFileSystem: Importing file: res://Environment/dark_bark/dark_bark_normal.png
EditorFileSystem: "res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_heightmap.png" import took 947 ms.
EditorFileSystem: Importing file: res://Environment/dark_bark/dark_bark_heightmap.png
etcpak: Encoding image size 512x512 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding took 17 ms.
EditorFileSystem: "res://Environment/dark_bark/dark_bark_normal.png" import took 72 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/moss/moss_normal.png
etcpak: Encoding image size 1024x1024 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding took 19 ms.
etcpak: Encoding image size 1024x1024 to format DXT1 RGB8, with mipmaps.
EditorFileSystem: "res://Enemies/beetle_bot/beetle_bot_fused_beetle_normal.png" import took 254 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/moss/moss_orm.png
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 22 ms.
EditorFileSystem: "res://Environment/dark_bark/dark_bark_orm.png" import took 143 ms.
etcpak: Encoding took 81 ms.
EditorFileSystem: "res://Enemies/beetle_bot/beetle_bot_fused_Image.png" import took 266 ms.
EditorFileSystem: "res://Enemies/beetle_bot/beetle_bot_fused_beetle_roughness.png" import took 297 ms.
etcpak: Encoding image size 512x512 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 22 ms.
EditorFileSystem: "res://Environment/dark_bark/dark_bark_heightmap.png" import took 161 ms.
etcpak: Encoding image size 1024x1024 to format DXT5 RGBA8, with mipmaps.
etcpak: Encoding took 10 ms.
EditorFileSystem: "res://Enemies/beetle_bot/beetle_bot_fused_beetle_albedo.png" import took 365 ms.
etcpak: Encoding image size 2048x2048 to format RGTC RedGreen8, with mipmaps.
etcpak: Encoding took 184 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_normal.png" import took 1341 ms.
etcpak: Encoding image size 2048x2048 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 227 ms.
etcpak: Encoding image size 2048x2048 to format RGTC RedGreen8, with mipmaps.
EditorFileSystem: "res://Environment/large_tree_trunk/moss/moss_albedo.png" import took 1280 ms.
etcpak: Encoding image size 2048x2048 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 173 ms.
EditorFileSystem: "res://Environment/large_tree_trunk/moss/moss_normal.png" import took 1145 ms.
etcpak: Encoding took 265 ms.
EditorFileSystem: "res://Environment/large_tree_trunk/moss/moss_orm.png" import took 1198 ms.
etcpak: Encoding image size 2048x2048 to format DXT1 RGB8, with mipmaps.
etcpak: Encoding took 224 ms.
EditorFileSystem: "res://Environment/large_tree_trunk/moss/moss_depth.png" import took 2397 ms.
EditorFileSystem: "res://DemoPage/Assets/DemoPageBackground.png" import took 4189 ms.
EditorFileSystem: "res://Environment/Terrain/Textures/voronoi_rock_cliff/voronoi_rock_cliff_albedo.png" import took 5726 ms.
EditorFileSystem: Importing file: res://Player/Sounds/45_Landing_01.wav
EditorFileSystem: Importing file: res://Player/Sounds/03_Step_grass_03.wav
EditorFileSystem: Importing file: res://Player/Sounds/lasershot-102078.wav
EditorFileSystem: Importing file: res://Enemies/Sounds/robot_defeat.wav
EditorFileSystem: Importing file: res://Enemies/Sounds/mechanical_2.wav
EditorFileSystem: Importing file: res://Box/Sounds/crate-break-1-93926.wav
EditorFileSystem: Importing file: res://Enemies/smoke_puff/Sounds/poof_2.wav
EditorFileSystem: Importing file: res://Player/Sounds/musket-explosion-6383.wav
EditorFileSystem: Importing file: res://Enemies/Sounds/mechanical_1.wav
EditorFileSystem: Importing file: res://Enemies/smoke_puff/Sounds/poof_1.wav
EditorFileSystem: "res://Player/Sounds/03_Step_grass_03.wav" import took 3 ms.
EditorFileSystem: "res://Enemies/smoke_puff/Sounds/poof_2.wav" import took 5 ms.
EditorFileSystem: "res://Enemies/Sounds/mechanical_1.wav" import took 6 ms.
EditorFileSystem: "res://Enemies/smoke_puff/Sounds/poof_1.wav" import took 6 ms.
EditorFileSystem: "res://Player/Sounds/lasershot-102078.wav" import took 7 ms.
EditorFileSystem: "res://Enemies/Sounds/mechanical_2.wav" import took 8 ms.
EditorFileSystem: "res://Box/Sounds/crate-break-1-93926.wav" import took 10 ms.
EditorFileSystem: "res://Player/Sounds/45_Landing_01.wav" import took 12 ms.
EditorFileSystem: "res://Player/Sounds/musket-explosion-6383.wav" import took 12 ms.
EditorFileSystem: "res://Enemies/Sounds/robot_defeat.wav" import took 15 ms.
EditorFileSystem: Importing file: res://Environment/grass/grass_1_geo.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :Plane.032
EditorFileSystem: "res://Environment/grass/grass_1_geo.obj" import took 19 ms.
EditorFileSystem: Importing file: res://Player/ExplosionVisuals/objects/disk.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :Circle
EditorFileSystem: "res://Player/ExplosionVisuals/objects/disk.obj" import took 8 ms.
EditorFileSystem: Importing file: res://Player/GrenadeVisuals/trajectory_mockup.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :trajectory_curve_BezierCurve
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :landing_mesh_Plane
EditorFileSystem: "res://Player/GrenadeVisuals/trajectory_mockup.obj" import took 6 ms.
EditorFileSystem: Importing file: res://Environment/large_tree_trunk/large_trunk.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :Cylinder
EditorFileSystem: "res://Environment/large_tree_trunk/large_trunk.obj" import took 18 ms.
EditorFileSystem: Importing file: res://Player/BulletVisuals/BulletModel.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :bullet
EditorFileSystem: "res://Player/BulletVisuals/BulletModel.obj" import took 14 ms.
EditorFileSystem: Importing file: res://Environment/flowers/flower_patch.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :Plane.001
EditorFileSystem: "res://Environment/flowers/flower_patch.obj" import took 16 ms.
EditorFileSystem: Importing file: res://Environment/bushes/bush.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :Mesh
EditorFileSystem: "res://Environment/bushes/bush.obj" import took 14 ms.
EditorFileSystem: Importing file: res://Environment/trees/tree.obj
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :Circle.002
OBJ: Current material library  has 0
OBJ: Current material  has 0
OBJ: Added surface :Cylinder.002
EditorFileSystem: "res://Environment/trees/tree.obj" import took 35 ms.
EditorFileSystem: Importing file: res://Player/model/gdbot.glb

...

EditorFileSystem: "res://Player/model/gdbot.glb" import took 2586 ms.

@akien-mga akien-mga merged commit d194378 into godotengine:master Feb 29, 2024
16 checks passed
@akien-mga akien-mga deleted the efs-tell-me-what-you-import branch February 29, 2024 13:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants