add broken spawner of sceleton
This commit is contained in:
parent
2d99a49eda
commit
2d685ce745
BIN
data/scene.rgs
BIN
data/scene.rgs
Binary file not shown.
|
|
@ -18,7 +18,7 @@ use fyrox::{
|
||||||
graph::Graph,
|
graph::Graph,
|
||||||
node::Node,
|
node::Node,
|
||||||
},
|
},
|
||||||
script::{ScriptContext, ScriptTrait},
|
script::{ScriptContext, ScriptTrait, Script},
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::Player;
|
use crate::Player;
|
||||||
|
|
@ -62,6 +62,8 @@ pub struct Enemy {
|
||||||
attack_damage: f32,
|
attack_damage: f32,
|
||||||
attack_timer: f32,
|
attack_timer: f32,
|
||||||
attack_speed: f32,
|
attack_speed: f32,
|
||||||
|
pub x: f32,
|
||||||
|
pub y: f32,
|
||||||
}
|
}
|
||||||
impl Enemy {
|
impl Enemy {
|
||||||
fn init(&mut self) {
|
fn init(&mut self) {
|
||||||
|
|
@ -111,7 +113,7 @@ impl Enemy {
|
||||||
if self.round(buffer[i].position[1]) == self.round(self_position.y) {
|
if self.round(buffer[i].position[1]) == self.round(self_position.y) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
return true
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,19 +7,20 @@ use fyrox::{
|
||||||
gui::message::UiMessage,
|
gui::message::UiMessage,
|
||||||
plugin::{Plugin, PluginConstructor, PluginContext, PluginRegistrationContext},
|
plugin::{Plugin, PluginConstructor, PluginContext, PluginRegistrationContext},
|
||||||
scene::{
|
scene::{
|
||||||
Scene,
|
graph::Graph, Scene
|
||||||
graph::Graph,
|
}
|
||||||
},
|
|
||||||
};
|
};
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
mod map;
|
mod map;
|
||||||
mod player;
|
mod player;
|
||||||
mod enemy;
|
mod enemy;
|
||||||
|
mod enemy_spawn;
|
||||||
mod msg;
|
mod msg;
|
||||||
|
|
||||||
use map::build_map;
|
use map::build_map;
|
||||||
use player::Player;
|
use player::Player;
|
||||||
use enemy::Enemy;
|
use enemy::Enemy;
|
||||||
|
use enemy_spawn::EnemySpawn;
|
||||||
use msg::Message;
|
use msg::Message;
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -29,6 +30,7 @@ impl PluginConstructor for GameConstructor {
|
||||||
fn register(&self, context: PluginRegistrationContext) {
|
fn register(&self, context: PluginRegistrationContext) {
|
||||||
// Register your scripts here.
|
// Register your scripts here.
|
||||||
let script_constructors = &context.serialization_context.script_constructors;
|
let script_constructors = &context.serialization_context.script_constructors;
|
||||||
|
script_constructors.add::<EnemySpawn>("EnemySpanw");
|
||||||
script_constructors.add::<Player>("Player");
|
script_constructors.add::<Player>("Player");
|
||||||
script_constructors.add::<Enemy>("Enemy");
|
script_constructors.add::<Enemy>("Enemy");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
906
settings.ron
906
settings.ron
|
|
@ -321,6 +321,72 @@
|
||||||
pitch: 0.0,
|
pitch: 0.0,
|
||||||
),
|
),
|
||||||
node_infos: {
|
node_infos: {
|
||||||
|
(
|
||||||
|
index: 7,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 74,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 40,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 39,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 59,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 12,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 51,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 32,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 17,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 60,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 38,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
(
|
(
|
||||||
index: 69,
|
index: 69,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
|
|
@ -328,13 +394,31 @@
|
||||||
is_expanded: false,
|
is_expanded: false,
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
index: 66,
|
index: 86,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 90,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
): (
|
): (
|
||||||
is_expanded: false,
|
is_expanded: false,
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
index: 71,
|
index: 14,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 18,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 92,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
): (
|
): (
|
||||||
is_expanded: true,
|
is_expanded: true,
|
||||||
|
|
@ -345,6 +429,372 @@
|
||||||
): (
|
): (
|
||||||
is_expanded: false,
|
is_expanded: false,
|
||||||
),
|
),
|
||||||
|
(
|
||||||
|
index: 1,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 91,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 42,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 20,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 27,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 29,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 57,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 52,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 30,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 81,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 35,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 71,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 2,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 4,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 48,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 45,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 22,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 83,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 49,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 0,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 72,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 87,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 56,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 66,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 94,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 43,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 31,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 63,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 82,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 10,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 46,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 80,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 93,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 6,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 95,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 8,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 3,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 58,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 15,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 5,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 44,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 26,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 36,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 89,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 13,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 65,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 78,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 54,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 84,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 25,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 28,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 24,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 41,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 34,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 62,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 23,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 19,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: false,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 47,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 53,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 50,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
|
(
|
||||||
|
index: 55,
|
||||||
|
generation: 1,
|
||||||
|
): (
|
||||||
|
is_expanded: true,
|
||||||
|
),
|
||||||
(
|
(
|
||||||
index: 11,
|
index: 11,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
|
|
@ -357,426 +807,18 @@
|
||||||
): (
|
): (
|
||||||
is_expanded: true,
|
is_expanded: true,
|
||||||
),
|
),
|
||||||
(
|
|
||||||
index: 32,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 62,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 87,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 65,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 10,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 51,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
(
|
||||||
index: 16,
|
index: 16,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
): (
|
): (
|
||||||
is_expanded: true,
|
is_expanded: true,
|
||||||
),
|
),
|
||||||
(
|
|
||||||
index: 14,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 20,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 82,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 58,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 53,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 2,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 30,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 4,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 93,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 27,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 38,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 31,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 13,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 33,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 78,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
(
|
||||||
index: 37,
|
index: 37,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
): (
|
): (
|
||||||
is_expanded: false,
|
is_expanded: false,
|
||||||
),
|
),
|
||||||
(
|
|
||||||
index: 57,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 18,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 47,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 63,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 40,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 56,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 74,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 59,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 48,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 5,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 39,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 3,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 24,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 80,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 81,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 12,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 45,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 17,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 83,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 29,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 43,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 28,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 84,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 95,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 7,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 44,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 90,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 15,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 91,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 52,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 94,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 60,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 22,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 23,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 41,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 42,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 34,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 86,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 49,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 54,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 92,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 8,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 19,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 25,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 36,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 6,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 72,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
(
|
||||||
index: 9,
|
index: 9,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
|
|
@ -784,7 +826,7 @@
|
||||||
is_expanded: false,
|
is_expanded: false,
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
index: 50,
|
index: 33,
|
||||||
generation: 1,
|
generation: 1,
|
||||||
): (
|
): (
|
||||||
is_expanded: true,
|
is_expanded: true,
|
||||||
|
|
@ -795,48 +837,6 @@
|
||||||
): (
|
): (
|
||||||
is_expanded: false,
|
is_expanded: false,
|
||||||
),
|
),
|
||||||
(
|
|
||||||
index: 26,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 46,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: false,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 55,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 35,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 89,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 1,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
(
|
|
||||||
index: 0,
|
|
||||||
generation: 1,
|
|
||||||
): (
|
|
||||||
is_expanded: true,
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue