diff --git a/assets/models/suit.glb b/assets/models/suit.glb new file mode 100644 index 0000000..e29f95b Binary files /dev/null and b/assets/models/suit.glb differ diff --git a/src/world.rs b/src/world.rs index 0e8156c..c30ab8f 100644 --- a/src/world.rs +++ b/src/world.rs @@ -20,7 +20,7 @@ const ASSET_ASTEROID1: &str = "models/asteroid.glb#Scene0"; const ASSET_ASTEROID2: &str = "models/asteroid2.glb#Scene0"; fn asset_name_to_path(name: &str) -> &'static str { match name { - "suit" => "external/alien.glb#Scene0", + "suit" => "models/suit.glb#Scene0", "jupiter" => "models/jupiter.glb#Scene0", "asteroid1" => ASSET_ASTEROID1, "asteroid2" => ASSET_ASTEROID2,