Compare commits
2 commits
4b16bd377d
...
86c8fe5e8a
Author | SHA1 | Date | |
---|---|---|---|
yuni | 86c8fe5e8a | ||
yuni | 982d745d8a |
|
@ -485,6 +485,9 @@ pub fn load_defs(mut ew_spawn: EventWriter<SpawnEvent>) {
|
|||
["pointofinterest", "yes"] => {
|
||||
state.is_point_of_interest = true;
|
||||
}
|
||||
["pointofinterest", "no"] => {
|
||||
state.is_point_of_interest = false;
|
||||
}
|
||||
["oxygen", amount] => {
|
||||
if let Ok(amount) = amount.parse::<f32>() {
|
||||
state.is_lifeform = true;
|
||||
|
@ -953,6 +956,11 @@ fn spawn_scenes(
|
|||
|
||||
// command: light FF8F4A 4000000
|
||||
state.light_color = Some(Color::Srgba(Srgba::hex("FF8F4A").unwrap()));
|
||||
|
||||
// Let's make the size consistent
|
||||
// command: scale 0.25
|
||||
state.model_scale = 0.25;
|
||||
|
||||
state.light_brightness = 4000000.0;
|
||||
}
|
||||
"mirror" | "mirrorrotating" => {
|
||||
|
|
|
@ -345,6 +345,7 @@ actor 700 -100 -1100 suitv2
|
|||
rotationy 108
|
||||
rotationx 180
|
||||
pronoun she
|
||||
pointofinterest no
|
||||
scene 12 0 -30 workshop
|
||||
relativeto Luna
|
||||
actor -20 10 -23 MeteorAceGT
|
||||
|
|
Loading…
Reference in a new issue