diff --git a/assets/models/pizzasign.glb b/assets/models/pizzasign.glb new file mode 100644 index 0000000..56312f6 Binary files /dev/null and b/assets/models/pizzasign.glb differ diff --git a/assets/models/pizzeria2.glb b/assets/models/pizzeria2.glb new file mode 100644 index 0000000..adc00c1 Binary files /dev/null and b/assets/models/pizzeria2.glb differ diff --git a/src/defs.txt b/src/defs.txt index b82307e..4a3d377 100644 --- a/src/defs.txt +++ b/src/defs.txt @@ -5,24 +5,28 @@ actor 300000 0 500000 jupiter actor 3000 0 0 moonlet scale 500 - -actor -2300 10 0 pizzeria - scale 30 - rotationy -1 angularmomentum 0 0.0001 0 +actor -3300 10 0 pizzeria + scale 40 + rotationy -0.25 + angularmomentum 0 0 0 + actor -3400 73 -13 pizzasign + scale 20 + rotationy 0.45 + angularmomentum 0.00001 0 0.0003 + actor -3295 3 -32 suit + name "Space Pizza™" + chatid pizzeria + alive yes + pronoun it + actor -50 0 0 suit name Icarus chatid hi_icarus alive yes pronoun it -actor -2265 10 0 suit - name "Space Pizza™" - chatid pizzeria - alive yes - pronoun it - chat hi_icarus name Icarus msg 2 INIT hi "Requesting permission to communicate..." diff --git a/src/hud.rs b/src/hud.rs index d0397aa..19b45d2 100644 --- a/src/hud.rs +++ b/src/hud.rs @@ -11,7 +11,7 @@ pub const LOG_MAX: usize = 20; pub const LOG_MAX_TIME_S: u64 = 20; pub const CHOICE_NONE: &str = ""; pub const AMBIENT_LIGHT: f32 = 0.0; // Space is DARK -pub const AMBIENT_LIGHT_AR: f32 = 20.0; +pub const AMBIENT_LIGHT_AR: f32 = 15.0; //pub const REPLY_NUMBERS: [char; 10] = ['❶', '❷', '❸', '❹', '❺', '❻', '❼', '❽', '❾', '⓿']; pub const REPLY_NUMBERS: [char; 10] = ['①', '②', '③', '④', '⑤', '⑥', '⑦', '⑧', '⑨', '⑩']; diff --git a/src/world.rs b/src/world.rs index eefb3c4..f543c41 100644 --- a/src/world.rs +++ b/src/world.rs @@ -26,7 +26,8 @@ fn asset_name_to_path(name: &str) -> &'static str { "asteroid1" => ASSET_ASTEROID1, "asteroid2" => ASSET_ASTEROID2, "moonlet" => "models/moonlet.glb#Scene0", - "pizzeria" => "models/pizzeria.glb#Scene0", + "pizzeria" => "models/pizzeria2.glb#Scene0", + "pizzasign" => "models/pizzasign.glb#Scene0", _ => "models/error.glb#Scene0", } }