diff --git a/assets/models/satellite.glb b/assets/models/satellite.glb new file mode 100644 index 0000000..dcffe82 Binary files /dev/null and b/assets/models/satellite.glb differ diff --git a/src/defs.txt b/src/defs.txt index 1c5655f..f0b849b 100644 --- a/src/defs.txt +++ b/src/defs.txt @@ -87,6 +87,14 @@ actor 3000 0 0 moonlet mass 10000000 angularmomentum 0 0.15 0 +actor -200 -110 1000 satellite + relativeto player + scale 40 + collider capsule 7.5 1 + rotationy 0.5 + angularmomentum 0 0 0 + mass 10 + actor 1000 20 300 monolith relativeto player scale 2 diff --git a/src/world.rs b/src/world.rs index 9a775bd..186afc5 100644 --- a/src/world.rs +++ b/src/world.rs @@ -30,6 +30,7 @@ pub fn asset_name_to_path(name: &str) -> &'static str { "monolith" => "models/monolith_neon.glb#Scene0", "lightorb" => "models/lightorb.glb#Scene0", "MeteorAceGT" => "models/MeteorAceGT.glb#Scene0", + "satellite" => "models/satellite.glb#Scene0", "pizzeria" => "models/pizzeria2.glb#Scene0", "pizzasign" => "models/pizzasign.glb#Scene0", _ => "models/error.glb#Scene0",