diff --git a/assets/models/clippy.glb b/assets/models/clippy.glb new file mode 100644 index 0000000..e91d336 Binary files /dev/null and b/assets/models/clippy.glb differ diff --git a/src/defs.txt b/src/defs.txt index f5a7762..96f3138 100644 --- a/src/defs.txt +++ b/src/defs.txt @@ -173,6 +173,15 @@ actor -3300 10 0 pizzeria relativeto pizzeria scale 0.5 light FF8F4A 1000000 + actor -33 0 4 clippy + name "Clippy™ Self-Replicating Convenience Companion" + relativeto pizzeria + angularmomentum 0 0 0 + wants maxrotation 0 + wants maxvelocity 0 + thrust 12 12 3 400 0.5 + rotationy -0.5 + scale 3 actor -35 0 0 suit relativeto pizzeria name "Space Pizza™" diff --git a/src/world.rs b/src/world.rs index 5f8013e..ae84ba3 100644 --- a/src/world.rs +++ b/src/world.rs @@ -34,6 +34,7 @@ pub fn asset_name_to_path(name: &str) -> &'static str { "pizzeria" => "models/pizzeria2.glb#Scene0", "pizzasign" => "models/pizzasign.glb#Scene0", "selectagon" => "models/selectagon.glb#Scene0", + "clippy" => "models/clippy.glb#Scene0", _ => "models/error.glb#Scene0", } }