From f68b9c711091895c581716ac82b3c9873bd3b0bd Mon Sep 17 00:00:00 2001 From: Peter Hayman Date: Fri, 29 Nov 2024 20:18:41 +0700 Subject: [PATCH] feature: reflect by default --- .gitignore | 2 + Cargo.lock | 8 - Cargo.toml | 12 +- .../src/lifecycle/lifecycle_plugin.rs | 35 +- scenes/app-ml.json | 4 - scenes/app.json | 4 - scenes/beet-debug.json | 11 - scenes/fetch-npc.json | 257 - scenes/fetch-scene.json | 398 - scenes/flock.json | 39613 ---------------- scenes/frozen-lake-run.json | 156 - scenes/frozen-lake-scene.json | 837 - scenes/frozen-lake-train.json | 65 - scenes/hello-animation.json | 224 - scenes/hello-ml.json | 65 - scenes/hello-world.json | 48 - scenes/seek-3d.json | 300 - scenes/seek.json | 129 - 18 files changed, 25 insertions(+), 42143 deletions(-) delete mode 100644 scenes/app-ml.json delete mode 100644 scenes/app.json delete mode 100644 scenes/beet-debug.json delete mode 100644 scenes/fetch-npc.json delete mode 100644 scenes/fetch-scene.json delete mode 100644 scenes/flock.json delete mode 100644 scenes/frozen-lake-run.json delete mode 100644 scenes/frozen-lake-scene.json delete mode 100644 scenes/frozen-lake-train.json delete mode 100644 scenes/hello-animation.json delete mode 100644 scenes/hello-ml.json delete mode 100644 scenes/hello-world.json delete mode 100644 scenes/seek-3d.json delete mode 100644 scenes/seek.json diff --git a/.gitignore b/.gitignore index 65a17d9b..db1f3e3d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,6 @@ docs/book out.txt rustc-ice* +scenes + .env \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index b070cbe8..afa817dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -584,8 +584,6 @@ dependencies = [ [[package]] name = "beetmash" version = "0.0.6-rc.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59b481770ef158c539a65849d5eb4a4f5a3416e68ab8e000c05ab5dd5b8cba61" dependencies = [ "beetmash_core", "beetmash_net", @@ -595,8 +593,6 @@ dependencies = [ [[package]] name = "beetmash_core" version = "0.0.6-rc.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3755e60e3dda8ea4d9bd4150a61568b332846bc8c30970c7f23427c427fc772" dependencies = [ "anyhow", "beetmash_net", @@ -612,8 +608,6 @@ dependencies = [ [[package]] name = "beetmash_net" version = "0.0.6-rc.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a277cb86ac5c73bafd8dd34b6990418633b442c5dbe685a37cca7789d73faea" dependencies = [ "anyhow", "bevy", @@ -636,8 +630,6 @@ dependencies = [ [[package]] name = "beetmash_scene" version = "0.0.6-rc.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7854eec6c63d113448b938f8687da2c29c5bc3e992d8d0a88c18a0d1ff5d222f" dependencies = [ "anyhow", "bevy", diff --git a/Cargo.toml b/Cargo.toml index 8b52d533..0b5323e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,11 +41,8 @@ beet_examples = { path = "crates/beet_examples", version = "0.0.4-rc.4" } emby = { path = "crates/emby", version = "0.0.4-rc.4" } ## local -beetmash = { version = "0.0.6-rc.8" } -forky = { version = "0.2.0-rc.8", features = [ - "bevy", - "web", -] } +beetmash = { version = "0.0.6-rc.8", path = "../beetmash" } +forky = { version = "0.2.0-rc.8", features = ["bevy", "web"] } sweet = { version = "0.2.0-rc.5", features = ["bevy"] } #💡 game @@ -116,10 +113,9 @@ keywords.workspace = true categories.workspace = true [features] -default = ["ml", "animation", "assets", "ui", "beetmash"] +default = ["ml", "animation", "assets", "ui", "beetmash", "reflect"] ml = ["dep:beet_ml"] -# this is on by default, do we need to re-expose it? -# reflect = ["beet_flow/reflect"] +reflect = ["beet_flow/reflect"] beetmash = ["dep:beetmash"] animation = ["beet_spatial/animation"] assets = ["beet_spatial/assets"] diff --git a/crates/beet_flow/src/lifecycle/lifecycle_plugin.rs b/crates/beet_flow/src/lifecycle/lifecycle_plugin.rs index 266a85e4..e21f333c 100644 --- a/crates/beet_flow/src/lifecycle/lifecycle_plugin.rs +++ b/crates/beet_flow/src/lifecycle/lifecycle_plugin.rs @@ -19,23 +19,26 @@ impl Plugin for LifecyclePlugin { RunOnRunResult, RunOnSceneReady, )>::default(), - // other actions + // repeat flow ActionPlugin::<( - EmptyAction, - RunTimer, - LogOnRun, - RepeatFlow, - InsertOnRun, - RemoveOnRun, - InsertOnRunResult, - RemoveOnRunResult, - SequenceFlow, - FallbackFlow, - ParallelFlow, - ScoreFlow, - ScoreProvider, - RunOnSpawn, - )>::default() + RepeatFlow, + InsertOnRun, + RemoveOnRun, + InsertOnRunResult, + RemoveOnRunResult, + )>::default(), + // misc + ActionPlugin::<( + EmptyAction, + RunTimer, + LogOnRun, + SequenceFlow, + FallbackFlow, + ParallelFlow, + ScoreFlow, + ScoreProvider, + RunOnSpawn, + )>::default() )) // observers .register_type::() diff --git a/scenes/app-ml.json b/scenes/app-ml.json deleted file mode 100644 index 31d842df..00000000 --- a/scenes/app-ml.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "resources": {}, - "entities": {} -} \ No newline at end of file diff --git a/scenes/app.json b/scenes/app.json deleted file mode 100644 index 31d842df..00000000 --- a/scenes/app.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "resources": {}, - "entities": {} -} \ No newline at end of file diff --git a/scenes/beet-debug.json b/scenes/beet-debug.json deleted file mode 100644 index 6609889a..00000000 --- a/scenes/beet-debug.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "resources": { - "beet_flow::lifecycle::beet_debug_plugin::BeetDebugConfig": { - "log_on_start": true, - "log_on_update": false, - "log_on_stop": false, - "log_to_stdout": true - } - }, - "entities": {} -} \ No newline at end of file diff --git a/scenes/fetch-npc.json b/scenes/fetch-npc.json deleted file mode 100644 index 5428409e..00000000 --- a/scenes/fetch-npc.json +++ /dev/null @@ -1,257 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967334": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity3d": [ - 5.0 - ], - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 0.7 - ], - "beet_spatial::steer::steer_bundle::MaxForce": [ - 0.05 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 2.0 - ], - "beetmash_scene::utils::animation_graph_placeholder::AnimationGraphPlaceholder": { - "root": 0, - "clips": [ - { - "clip": { - "path": "Fox.glb#Animation0" - }, - "parent": 0, - "weight": 1.0 - }, - { - "clip": { - "path": "Fox.glb#Animation1" - }, - "parent": 0, - "weight": 1.0 - } - ] - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "Fox.glb#Scene0" - }, - "bevy_animation::transition::AnimationTransitions": { - "main_animation": null, - "transitions": [] - }, - "bevy_core::name::Name": "Fox", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967335 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.01, - 0.01, - 0.01 - ] - } - } - }, - "4294967335": { - "components": { - "beet_flow::actions::flow::score_flow::ScoreFlow": [ - {} - ], - "beet_flow::actions::on_trigger::on_global_trigger::OnGlobalTrigger>": [ - { - "params": [], - "sources": [], - "target": "This" - } - ], - "beet_flow::actions::on_trigger::on_global_trigger::OnGlobalTrigger>>": [ - { - "params": {}, - "sources": [], - "target": "This" - } - ], - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [ - 4294967334 - ], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [ - 4294967334 - ], - "target": "This" - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_ml::language::selectors::insert_sentence_steer_target::InsertSentenceSteerTarget": {}, - "beetmash_core::render::block_app_ready::AssetLoadBlockAppReady": {}, - "beetmash_scene::utils::asset_placeholder::AssetPlaceholder": { - "path": "ml/default-bert.ron" - }, - "bevy_core::name::Name": "Fetch Behavior", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967336, - 4294967337 - ] - ], - "bevy_hierarchy::components::parent::Parent": [ - 4294967334 - ] - } - }, - "4294967336": { - "components": { - "beet_flow::actions::flow::score_provider::ScoreProvider": [ - 0.5 - ], - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_spatial::animation::play_animation::PlayAnimation": { - "animation": 1, - "trigger_if_playing": false, - "repeat": "Forever", - "transition_duration": { - "secs": 0, - "nanos": 250000000 - } - }, - "bevy_core::name::Name": "Idle", - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - }, - "4294967337": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "sources": [], - "target": { - "Entity": 4294967334 - } - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": { - "Entity": 4294967334 - } - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": { - "Entity": 4294967334 - } - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_spatial::animation::play_animation::PlayAnimation": { - "animation": 2, - "trigger_if_playing": false, - "repeat": "Forever", - "transition_duration": { - "secs": 0, - "nanos": 250000000 - } - }, - "beet_spatial::steer::steer_actions::end_on_arrive::EndOnArrive": { - "radius": 1.0 - }, - "beet_spatial::steer::steer_actions::seek::Seek": { - "on_not_found": "Warn" - }, - "beet_spatial::steer::steer_actions::steer_target_score_provider::SteerTargetScoreProvider": { - "min_radius": 1.0, - "max_radius": 10.0 - }, - "bevy_core::name::Name": "Fetch", - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - } - } -} \ No newline at end of file diff --git a/scenes/fetch-scene.json b/scenes/fetch-scene.json deleted file mode 100644 index fa6bcfa6..00000000 --- a/scenes/fetch-scene.json +++ /dev/null @@ -1,398 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967334": { - "components": { - "beet_examples::components::camera_distance::CameraDistance": { - "width": 2.8, - "offset": [ - 0.0, - 1.6, - 2.0 - ] - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": "Camera3d" - } - }, - "4294967335": { - "components": { - "beet_examples::components::collectable::Collectable": {}, - "beet_ml::language::selectors::sentence_flow::Sentence": [ - "red healing potion" - ], - "bevy_core::name::Name": "Potion", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967336 - ] - ], - "bevy_render::view::visibility::InheritedVisibility": [ - false - ], - "bevy_render::view::visibility::ViewVisibility": [ - false - ], - "bevy_render::view::visibility::Visibility": "Inherited", - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 2.0, - 0.0, - 2.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ] - } - } - }, - "4294967336": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit/potion.glb#Scene0" - }, - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967337": { - "components": { - "beet_examples::components::collectable::Collectable": {}, - "beet_ml::language::selectors::sentence_flow::Sentence": [ - "gold coin" - ], - "bevy_core::name::Name": "Coin", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967338 - ] - ], - "bevy_render::view::visibility::InheritedVisibility": [ - false - ], - "bevy_render::view::visibility::ViewVisibility": [ - false - ], - "bevy_render::view::visibility::Visibility": "Inherited", - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 2.0, - 0.0, - -2.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ] - } - } - }, - "4294967338": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit/coin.glb#Scene0" - }, - "bevy_hierarchy::components::parent::Parent": [ - 4294967337 - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.2, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967339": { - "components": { - "beet_examples::components::collectable::Collectable": {}, - "beet_ml::language::selectors::sentence_flow::Sentence": [ - "silver sword" - ], - "bevy_core::name::Name": "Sword", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967340 - ] - ], - "bevy_render::view::visibility::InheritedVisibility": [ - false - ], - "bevy_render::view::visibility::ViewVisibility": [ - false - ], - "bevy_render::view::visibility::Visibility": "Inherited", - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -2.0, - 0.0, - 2.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ] - } - } - }, - "4294967340": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit/sword.glb#Scene0" - }, - "bevy_hierarchy::components::parent::Parent": [ - 4294967339 - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.15, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967341": { - "components": { - "beet_examples::components::collectable::Collectable": {}, - "beet_ml::language::selectors::sentence_flow::Sentence": [ - "tasty cheese" - ], - "bevy_core::name::Name": "Cheese", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967342 - ] - ], - "bevy_render::view::visibility::InheritedVisibility": [ - false - ], - "bevy_render::view::visibility::ViewVisibility": [ - false - ], - "bevy_render::view::visibility::Visibility": "Inherited", - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -2.0, - 0.0, - -2.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ] - } - } - }, - "4294967342": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit/cheese.glb#Scene0" - }, - "bevy_hierarchy::components::parent::Parent": [ - 4294967341 - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - } - } -} \ No newline at end of file diff --git a/scenes/flock.json b/scenes/flock.json deleted file mode 100644 index 8b408827..00000000 --- a/scenes/flock.json +++ /dev/null @@ -1,39613 +0,0 @@ -{ - "resources": { - "beet_examples::components::wrap_around::WrapAround": { - "half_extents": { - "x": 1.0, - "y": 1.0, - "z": 1.0 - } - } - }, - "entities": { - "4294967333": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967334 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967334": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967333 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967333 - ] - } - }, - "4294967335": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967336 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967336": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967335 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - }, - "4294967337": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967338 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967338": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967337 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967337 - ] - } - }, - "4294967339": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967340 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967340": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967339 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967339 - ] - } - }, - "4294967341": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967342 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967342": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967341 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967341 - ] - } - }, - "4294967343": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967344 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967344": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967343 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967343 - ] - } - }, - "4294967345": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967346 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967346": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967345 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967345 - ] - } - }, - "4294967347": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967348 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967348": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967347 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967347 - ] - } - }, - "4294967349": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967350 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967350": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967349 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967349 - ] - } - }, - "4294967351": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967352 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967352": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967351 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967351 - ] - } - }, - "4294967353": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967354 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967354": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967353 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967353 - ] - } - }, - "4294967355": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967356 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967356": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967355 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967355 - ] - } - }, - "4294967357": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967358 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967358": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967357 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967357 - ] - } - }, - "4294967359": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967360 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967360": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967359 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967359 - ] - } - }, - "4294967361": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967362 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967362": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967361 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967361 - ] - } - }, - "4294967363": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967364 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967364": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967363 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967363 - ] - } - }, - "4294967365": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967366 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967366": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967365 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967365 - ] - } - }, - "4294967367": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967368 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967368": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967367 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967367 - ] - } - }, - "4294967369": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967370 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967370": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967369 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967369 - ] - } - }, - "4294967371": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967372 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967372": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967371 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967371 - ] - } - }, - "4294967373": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967374 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967374": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967373 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967373 - ] - } - }, - "4294967375": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967376 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967376": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967375 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967375 - ] - } - }, - "4294967377": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967378 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967378": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967377 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967377 - ] - } - }, - "4294967379": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967380 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967380": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967379 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967379 - ] - } - }, - "4294967381": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967382 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967382": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967381 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967381 - ] - } - }, - "4294967383": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967384 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967384": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967383 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967383 - ] - } - }, - "4294967385": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967386 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967386": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967385 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967385 - ] - } - }, - "4294967387": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967388 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967388": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967387 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967387 - ] - } - }, - "4294967389": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967390 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967390": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967389 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967389 - ] - } - }, - "4294967391": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967392 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967392": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967391 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967391 - ] - } - }, - "4294967393": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967394 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967394": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967393 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967393 - ] - } - }, - "4294967395": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967396 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967396": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967395 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967395 - ] - } - }, - "4294967397": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967398 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967398": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967397 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967397 - ] - } - }, - "4294967399": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967400 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967400": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967399 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967399 - ] - } - }, - "4294967401": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967402 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967402": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967401 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967401 - ] - } - }, - "4294967403": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967404 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967404": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967403 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967403 - ] - } - }, - "4294967405": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967406 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967406": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967405 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967405 - ] - } - }, - "4294967407": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967408 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967408": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967407 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967407 - ] - } - }, - "4294967409": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967410 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967410": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967409 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967409 - ] - } - }, - "4294967411": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967412 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967412": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967411 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967411 - ] - } - }, - "4294967413": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967414 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967414": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967413 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967413 - ] - } - }, - "4294967415": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967416 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967416": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967415 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967415 - ] - } - }, - "4294967417": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967418 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967418": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967417 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967417 - ] - } - }, - "4294967419": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967420 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967420": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967419 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967419 - ] - } - }, - "4294967421": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967422 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967422": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967421 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967421 - ] - } - }, - "4294967423": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967424 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967424": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967423 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967423 - ] - } - }, - "4294967425": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967426 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967426": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967425 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967425 - ] - } - }, - "4294967427": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967428 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967428": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967427 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967427 - ] - } - }, - "4294967429": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967430 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967430": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967429 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967429 - ] - } - }, - "4294967431": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967432 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967432": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967431 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967431 - ] - } - }, - "4294967433": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967434 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967434": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967433 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967433 - ] - } - }, - "4294967435": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967436 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967436": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967435 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967435 - ] - } - }, - "4294967437": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967438 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967438": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967437 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967437 - ] - } - }, - "4294967439": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967440 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967440": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967439 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967439 - ] - } - }, - "4294967441": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967442 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967442": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967441 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967441 - ] - } - }, - "4294967443": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967444 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967444": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967443 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967443 - ] - } - }, - "4294967445": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967446 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967446": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967445 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967445 - ] - } - }, - "4294967447": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967448 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967448": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967447 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967447 - ] - } - }, - "4294967449": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967450 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967450": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967449 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967449 - ] - } - }, - "4294967451": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967452 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967452": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967451 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967451 - ] - } - }, - "4294967453": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967454 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967454": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967453 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967453 - ] - } - }, - "4294967455": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967456 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967456": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967455 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967455 - ] - } - }, - "4294967457": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967458 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967458": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967457 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967457 - ] - } - }, - "4294967459": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967460 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967460": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967459 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967459 - ] - } - }, - "4294967461": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967462 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967462": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967461 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967461 - ] - } - }, - "4294967463": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967464 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967464": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967463 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967463 - ] - } - }, - "4294967465": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967466 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967466": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967465 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967465 - ] - } - }, - "4294967467": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967468 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967468": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967467 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967467 - ] - } - }, - "4294967469": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967470 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967470": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967469 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967469 - ] - } - }, - "4294967471": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967472 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967472": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967471 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967471 - ] - } - }, - "4294967473": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967474 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967474": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967473 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967473 - ] - } - }, - "4294967475": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967476 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967476": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967475 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967475 - ] - } - }, - "4294967477": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967478 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967478": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967477 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967477 - ] - } - }, - "4294967479": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967480 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967480": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967479 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967479 - ] - } - }, - "4294967481": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967482 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967482": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967481 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967481 - ] - } - }, - "4294967483": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967484 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967484": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967483 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967483 - ] - } - }, - "4294967485": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967486 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967486": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967485 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967485 - ] - } - }, - "4294967487": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967488 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967488": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967487 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967487 - ] - } - }, - "4294967489": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967490 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967490": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967489 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967489 - ] - } - }, - "4294967491": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967492 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967492": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967491 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967491 - ] - } - }, - "4294967493": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967494 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967494": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967493 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967493 - ] - } - }, - "4294967495": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967496 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967496": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967495 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967495 - ] - } - }, - "4294967497": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967498 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967498": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967497 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967497 - ] - } - }, - "4294967499": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967500 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967500": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967499 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967499 - ] - } - }, - "4294967501": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967502 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967502": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967501 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967501 - ] - } - }, - "4294967503": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967504 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967504": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967503 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967503 - ] - } - }, - "4294967505": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967506 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967506": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967505 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967505 - ] - } - }, - "4294967507": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967508 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967508": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967507 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967507 - ] - } - }, - "4294967509": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967510 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967510": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967509 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967509 - ] - } - }, - "4294967511": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967512 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967512": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967511 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967511 - ] - } - }, - "4294967513": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967514 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967514": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967513 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967513 - ] - } - }, - "4294967515": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967516 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967516": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967515 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967515 - ] - } - }, - "4294967517": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967518 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967518": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967517 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967517 - ] - } - }, - "4294967519": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967520 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967520": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967519 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967519 - ] - } - }, - "4294967521": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967522 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967522": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967521 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967521 - ] - } - }, - "4294967523": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967524 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967524": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967523 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967523 - ] - } - }, - "4294967525": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967526 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967526": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967525 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967525 - ] - } - }, - "4294967527": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967528 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967528": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967527 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967527 - ] - } - }, - "4294967529": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967530 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967530": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967529 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967529 - ] - } - }, - "4294967531": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967532 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967532": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967531 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967531 - ] - } - }, - "4294967533": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967534 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967534": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967533 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967533 - ] - } - }, - "4294967535": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967536 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967536": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967535 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967535 - ] - } - }, - "4294967537": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967538 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967538": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967537 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967537 - ] - } - }, - "4294967539": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967540 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967540": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967539 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967539 - ] - } - }, - "4294967541": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967542 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967542": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967541 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967541 - ] - } - }, - "4294967543": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967544 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967544": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967543 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967543 - ] - } - }, - "4294967545": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967546 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967546": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967545 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967545 - ] - } - }, - "4294967547": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967548 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967548": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967547 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967547 - ] - } - }, - "4294967549": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967550 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967550": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967549 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967549 - ] - } - }, - "4294967551": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967552 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967552": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967551 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967551 - ] - } - }, - "4294967553": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967554 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967554": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967553 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967553 - ] - } - }, - "4294967555": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967556 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967556": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967555 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967555 - ] - } - }, - "4294967557": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967558 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967558": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967557 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967557 - ] - } - }, - "4294967559": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967560 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967560": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967559 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967559 - ] - } - }, - "4294967561": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967562 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967562": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967561 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967561 - ] - } - }, - "4294967563": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967564 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967564": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967563 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967563 - ] - } - }, - "4294967565": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967566 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967566": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967565 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967565 - ] - } - }, - "4294967567": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967568 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967568": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967567 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967567 - ] - } - }, - "4294967569": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967570 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967570": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967569 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967569 - ] - } - }, - "4294967571": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967572 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967572": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967571 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967571 - ] - } - }, - "4294967573": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967574 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967574": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967573 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967573 - ] - } - }, - "4294967575": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967576 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967576": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967575 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967575 - ] - } - }, - "4294967577": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967578 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967578": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967577 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967577 - ] - } - }, - "4294967579": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967580 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967580": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967579 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967579 - ] - } - }, - "4294967581": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967582 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967582": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967581 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967581 - ] - } - }, - "4294967583": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967584 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967584": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967583 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967583 - ] - } - }, - "4294967585": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967586 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967586": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967585 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967585 - ] - } - }, - "4294967587": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967588 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967588": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967587 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967587 - ] - } - }, - "4294967589": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967590 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967590": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967589 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967589 - ] - } - }, - "4294967591": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967592 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967592": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967591 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967591 - ] - } - }, - "4294967593": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967594 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967594": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967593 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967593 - ] - } - }, - "4294967595": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967596 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967596": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967595 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967595 - ] - } - }, - "4294967597": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967598 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967598": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967597 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967597 - ] - } - }, - "4294967599": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967600 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967600": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967599 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967599 - ] - } - }, - "4294967601": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967602 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967602": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967601 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967601 - ] - } - }, - "4294967603": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967604 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967604": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967603 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967603 - ] - } - }, - "4294967605": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967606 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967606": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967605 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967605 - ] - } - }, - "4294967607": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967608 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967608": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967607 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967607 - ] - } - }, - "4294967609": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967610 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967610": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967609 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967609 - ] - } - }, - "4294967611": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967612 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967612": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967611 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967611 - ] - } - }, - "4294967613": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967614 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967614": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967613 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967613 - ] - } - }, - "4294967615": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967616 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967616": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967615 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967615 - ] - } - }, - "4294967617": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967618 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967618": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967617 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967617 - ] - } - }, - "4294967619": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967620 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967620": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967619 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967619 - ] - } - }, - "4294967621": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967622 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967622": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967621 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967621 - ] - } - }, - "4294967623": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967624 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967624": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967623 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967623 - ] - } - }, - "4294967625": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967626 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967626": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967625 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967625 - ] - } - }, - "4294967627": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967628 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967628": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967627 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967627 - ] - } - }, - "4294967629": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967630 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967630": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967629 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967629 - ] - } - }, - "4294967631": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967632 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967632": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967631 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967631 - ] - } - }, - "4294967633": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967634 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967634": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967633 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967633 - ] - } - }, - "4294967635": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967636 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967636": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967635 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967635 - ] - } - }, - "4294967637": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967638 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967638": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967637 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967637 - ] - } - }, - "4294967639": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967640 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967640": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967639 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967639 - ] - } - }, - "4294967641": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967642 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967642": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967641 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967641 - ] - } - }, - "4294967643": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967644 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967644": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967643 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967643 - ] - } - }, - "4294967645": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967646 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967646": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967645 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967645 - ] - } - }, - "4294967647": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967648 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967648": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967647 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967647 - ] - } - }, - "4294967649": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967650 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967650": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967649 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967649 - ] - } - }, - "4294967651": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967652 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967652": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967651 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967651 - ] - } - }, - "4294967653": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967654 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967654": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967653 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967653 - ] - } - }, - "4294967655": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967656 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967656": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967655 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967655 - ] - } - }, - "4294967657": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967658 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967658": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967657 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967657 - ] - } - }, - "4294967659": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967660 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967660": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967659 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967659 - ] - } - }, - "4294967661": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967662 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967662": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967661 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967661 - ] - } - }, - "4294967663": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967664 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967664": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967663 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967663 - ] - } - }, - "4294967665": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967666 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967666": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967665 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967665 - ] - } - }, - "4294967667": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967668 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967668": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967667 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967667 - ] - } - }, - "4294967669": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967670 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967670": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967669 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967669 - ] - } - }, - "4294967671": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967672 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967672": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967671 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967671 - ] - } - }, - "4294967673": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967674 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967674": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967673 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967673 - ] - } - }, - "4294967675": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967676 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967676": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967675 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967675 - ] - } - }, - "4294967677": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967678 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967678": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967677 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967677 - ] - } - }, - "4294967679": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967680 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967680": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967679 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967679 - ] - } - }, - "4294967681": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967682 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967682": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967681 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967681 - ] - } - }, - "4294967683": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967684 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967684": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967683 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967683 - ] - } - }, - "4294967685": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967686 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967686": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967685 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967685 - ] - } - }, - "4294967687": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967688 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967688": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967687 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967687 - ] - } - }, - "4294967689": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967690 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967690": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967689 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967689 - ] - } - }, - "4294967691": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967692 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967692": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967691 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967691 - ] - } - }, - "4294967693": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967694 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967694": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967693 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967693 - ] - } - }, - "4294967695": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967696 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967696": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967695 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967695 - ] - } - }, - "4294967697": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967698 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967698": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967697 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967697 - ] - } - }, - "4294967699": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967700 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967700": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967699 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967699 - ] - } - }, - "4294967701": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967702 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967702": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967701 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967701 - ] - } - }, - "4294967703": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967704 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967704": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967703 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967703 - ] - } - }, - "4294967705": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967706 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967706": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967705 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967705 - ] - } - }, - "4294967707": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967708 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967708": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967707 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967707 - ] - } - }, - "4294967709": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967710 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967710": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967709 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967709 - ] - } - }, - "4294967711": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967712 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967712": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967711 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967711 - ] - } - }, - "4294967713": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967714 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967714": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967713 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967713 - ] - } - }, - "4294967715": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967716 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967716": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967715 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967715 - ] - } - }, - "4294967717": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967718 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967718": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967717 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967717 - ] - } - }, - "4294967719": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967720 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967720": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967719 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967719 - ] - } - }, - "4294967721": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967722 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967722": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967721 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967721 - ] - } - }, - "4294967723": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967724 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967724": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967723 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967723 - ] - } - }, - "4294967725": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967726 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967726": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967725 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967725 - ] - } - }, - "4294967727": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967728 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967728": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967727 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967727 - ] - } - }, - "4294967729": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967730 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967730": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967729 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967729 - ] - } - }, - "4294967731": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967732 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967732": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967731 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967731 - ] - } - }, - "4294967733": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967734 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967734": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967733 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967733 - ] - } - }, - "4294967735": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967736 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967736": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967735 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967735 - ] - } - }, - "4294967737": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967738 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967738": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967737 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967737 - ] - } - }, - "4294967739": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967740 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967740": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967739 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967739 - ] - } - }, - "4294967741": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967742 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967742": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967741 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967741 - ] - } - }, - "4294967743": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967744 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967744": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967743 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967743 - ] - } - }, - "4294967745": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967746 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967746": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967745 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967745 - ] - } - }, - "4294967747": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967748 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967748": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967747 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967747 - ] - } - }, - "4294967749": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967750 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967750": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967749 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967749 - ] - } - }, - "4294967751": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967752 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967752": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967751 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967751 - ] - } - }, - "4294967753": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967754 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967754": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967753 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967753 - ] - } - }, - "4294967755": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967756 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967756": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967755 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967755 - ] - } - }, - "4294967757": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967758 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967758": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967757 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967757 - ] - } - }, - "4294967759": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967760 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967760": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967759 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967759 - ] - } - }, - "4294967761": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967762 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967762": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967761 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967761 - ] - } - }, - "4294967763": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967764 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967764": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967763 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967763 - ] - } - }, - "4294967765": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967766 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967766": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967765 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967765 - ] - } - }, - "4294967767": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967768 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967768": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967767 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967767 - ] - } - }, - "4294967769": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967770 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967770": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967769 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967769 - ] - } - }, - "4294967771": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967772 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967772": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967771 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967771 - ] - } - }, - "4294967773": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967774 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967774": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967773 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967773 - ] - } - }, - "4294967775": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967776 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967776": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967775 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967775 - ] - } - }, - "4294967777": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967778 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967778": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967777 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967777 - ] - } - }, - "4294967779": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967780 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967780": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967779 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967779 - ] - } - }, - "4294967781": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967782 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967782": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967781 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967781 - ] - } - }, - "4294967783": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967784 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967784": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967783 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967783 - ] - } - }, - "4294967785": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967786 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967786": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967785 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967785 - ] - } - }, - "4294967787": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967788 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967788": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967787 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967787 - ] - } - }, - "4294967789": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967790 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967790": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967789 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967789 - ] - } - }, - "4294967791": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967792 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967792": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967791 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967791 - ] - } - }, - "4294967793": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967794 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967794": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967793 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967793 - ] - } - }, - "4294967795": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967796 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967796": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967795 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967795 - ] - } - }, - "4294967797": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967798 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967798": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967797 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967797 - ] - } - }, - "4294967799": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967800 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967800": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967799 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967799 - ] - } - }, - "4294967801": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967802 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967802": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967801 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967801 - ] - } - }, - "4294967803": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967804 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967804": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967803 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967803 - ] - } - }, - "4294967805": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967806 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967806": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967805 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967805 - ] - } - }, - "4294967807": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967808 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967808": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967807 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967807 - ] - } - }, - "4294967809": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967810 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967810": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967809 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967809 - ] - } - }, - "4294967811": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967812 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967812": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967811 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967811 - ] - } - }, - "4294967813": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967814 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967814": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967813 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967813 - ] - } - }, - "4294967815": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967816 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967816": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967815 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967815 - ] - } - }, - "4294967817": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967818 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967818": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967817 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967817 - ] - } - }, - "4294967819": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967820 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967820": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967819 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967819 - ] - } - }, - "4294967821": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967822 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967822": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967821 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967821 - ] - } - }, - "4294967823": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967824 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967824": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967823 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967823 - ] - } - }, - "4294967825": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967826 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967826": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967825 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967825 - ] - } - }, - "4294967827": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967828 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967828": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967827 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967827 - ] - } - }, - "4294967829": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967830 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967830": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967829 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967829 - ] - } - }, - "4294967831": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967832 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967832": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967831 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967831 - ] - } - }, - "4294967833": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967834 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967834": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967833 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967833 - ] - } - }, - "4294967835": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967836 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967836": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967835 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967835 - ] - } - }, - "4294967837": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967838 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967838": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967837 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967837 - ] - } - }, - "4294967839": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967840 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967840": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967839 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967839 - ] - } - }, - "4294967841": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967842 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967842": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967841 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967841 - ] - } - }, - "4294967843": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967844 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967844": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967843 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967843 - ] - } - }, - "4294967845": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967846 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967846": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967845 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967845 - ] - } - }, - "4294967847": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967848 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967848": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967847 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967847 - ] - } - }, - "4294967849": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967850 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967850": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967849 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967849 - ] - } - }, - "4294967851": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967852 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967852": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967851 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967851 - ] - } - }, - "4294967853": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967854 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967854": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967853 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967853 - ] - } - }, - "4294967855": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967856 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967856": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967855 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967855 - ] - } - }, - "4294967857": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967858 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967858": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967857 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967857 - ] - } - }, - "4294967859": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967860 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967860": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967859 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967859 - ] - } - }, - "4294967861": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967862 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967862": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967861 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967861 - ] - } - }, - "4294967863": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967864 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967864": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967863 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967863 - ] - } - }, - "4294967865": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967866 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967866": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967865 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967865 - ] - } - }, - "4294967867": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967868 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967868": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967867 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967867 - ] - } - }, - "4294967869": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967870 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967870": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967869 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967869 - ] - } - }, - "4294967871": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967872 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967872": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967871 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967871 - ] - } - }, - "4294967873": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967874 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967874": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967873 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967873 - ] - } - }, - "4294967875": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967876 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967876": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967875 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967875 - ] - } - }, - "4294967877": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967878 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967878": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967877 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967877 - ] - } - }, - "4294967879": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967880 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967880": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967879 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967879 - ] - } - }, - "4294967881": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967882 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967882": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967881 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967881 - ] - } - }, - "4294967883": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967884 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967884": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967883 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967883 - ] - } - }, - "4294967885": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967886 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967886": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967885 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967885 - ] - } - }, - "4294967887": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967888 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967888": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967887 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967887 - ] - } - }, - "4294967889": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967890 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967890": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967889 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967889 - ] - } - }, - "4294967891": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967892 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967892": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967891 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967891 - ] - } - }, - "4294967893": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967894 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967894": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967893 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967893 - ] - } - }, - "4294967895": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967896 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967896": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967895 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967895 - ] - } - }, - "4294967897": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967898 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967898": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967897 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967897 - ] - } - }, - "4294967899": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967900 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967900": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967899 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967899 - ] - } - }, - "4294967901": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967902 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967902": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967901 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967901 - ] - } - }, - "4294967903": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967904 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967904": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967903 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967903 - ] - } - }, - "4294967905": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967906 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967906": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967905 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967905 - ] - } - }, - "4294967907": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967908 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967908": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967907 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967907 - ] - } - }, - "4294967909": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967910 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967910": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967909 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967909 - ] - } - }, - "4294967911": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967912 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967912": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967911 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967911 - ] - } - }, - "4294967913": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967914 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967914": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967913 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967913 - ] - } - }, - "4294967915": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967916 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967916": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967915 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967915 - ] - } - }, - "4294967917": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967918 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967918": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967917 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967917 - ] - } - }, - "4294967919": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967920 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967920": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967919 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967919 - ] - } - }, - "4294967921": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967922 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967922": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967921 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967921 - ] - } - }, - "4294967923": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967924 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967924": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967923 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967923 - ] - } - }, - "4294967925": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967926 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967926": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967925 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967925 - ] - } - }, - "4294967927": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967928 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967928": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967927 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967927 - ] - } - }, - "4294967929": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967930 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967930": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967929 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967929 - ] - } - }, - "4294967931": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::VelocityScalar": [ - [ - 1.0, - 1.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 70.0 - ], - "beet_spatial::steer::steer_bundle::GroupSteerAgent": {}, - "beet_spatial::steer::steer_bundle::MaxForce": [ - 1.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 100.0 - ], - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Spaceship", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967932 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } - }, - "4294967932": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967931 - ], - "beet_spatial::steer::steer_actions::align::Align": { - "scalar": 1.0, - "radius": 50.0 - }, - "beet_spatial::steer::steer_actions::cohere::Cohere": { - "scalar": 1.0, - "radius": 70.0 - }, - "beet_spatial::steer::steer_actions::separate::Separate": { - "scalar": 1.0, - "radius": 25.0 - }, - "beet_spatial::steer::steer_actions::wander::Wander": { - "scalar": 1.0, - "outer_distance": 100.0, - "outer_radius": 50.0, - "inner_radius": 5.0, - "last_local_target": [ - 0.0, - 0.0, - 0.0 - ] - }, - "bevy_core::name::Name": "Flock Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967931 - ] - } - } - } -} \ No newline at end of file diff --git a/scenes/frozen-lake-run.json b/scenes/frozen-lake-run.json deleted file mode 100644 index 7dcdb285..00000000 --- a/scenes/frozen-lake-run.json +++ /dev/null @@ -1,156 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967334": { - "components": { - "beet_ml::environments::frozen_lake::grid::GridDirection": "Left", - "beet_ml::environments::frozen_lake::grid::GridPos": [ - [ - 0, - 0 - ] - ], - "beet_ml::environments::frozen_lake::grid::GridToWorld": { - "map_width": 1.0, - "cell_width": 0.25, - "map_size": [ - 4, - 4 - ], - "offset": [ - -0.375, - 0.0, - -0.375 - ] - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/character_dog.gltf.glb#Scene0" - }, - "bevy_core::name::Name": "Inference Agent", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967335 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.375, - 0.0, - -0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.125, - 0.125, - 0.125 - ] - } - } - }, - "4294967335": { - "components": { - "beet_flow::actions::flow::sequence_flow::SequenceFlow": {}, - "beet_flow::actions::on_trigger::on_global_trigger::OnGlobalTrigger>>": [ - { - "params": {}, - "sources": [], - "target": "This" - } - ], - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "bevy_core::name::Name": "Run Frozen Lake Agent", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967336, - 4294967337 - ] - ], - "bevy_hierarchy::components::parent::Parent": [ - 4294967334 - ] - } - }, - "4294967336": { - "components": { - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_ml::rl_realtime::read_qpolicy::ReadQPolicy>": {}, - "beetmash_core::render::block_app_ready::AssetLoadBlockAppReady": {}, - "beetmash_scene::utils::asset_placeholder::AssetPlaceholder>": { - "path": "ml/frozen_lake_qtable.ron" - }, - "bevy_core::name::Name": "Get next action", - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - }, - "4294967337": { - "components": { - "beet_flow::actions::misc::run_timer::RunTimer": { - "last_started": { - "elapsed": { - "secs": 0, - "nanos": 0 - }, - "paused": false - }, - "last_stopped": { - "elapsed": { - "secs": 0, - "nanos": 0 - }, - "paused": false - } - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_ml::environments::frozen_lake::translate_grid::TranslateGrid": { - "anim_duration": { - "secs": 1, - "nanos": 0 - } - }, - "bevy_core::name::Name": "Perform action", - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - } - } -} \ No newline at end of file diff --git a/scenes/frozen-lake-scene.json b/scenes/frozen-lake-scene.json deleted file mode 100644 index 0e0cc47e..00000000 --- a/scenes/frozen-lake-scene.json +++ /dev/null @@ -1,837 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967334": { - "components": { - "beet_examples::components::camera_distance::CameraDistance": { - "width": 0.77, - "offset": [ - 0.0, - 0.7, - 0.7 - ] - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": "Camera3d" - } - }, - "4294967335": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.375, - -0.25, - -0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967336": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.375, - -0.25, - -0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967337": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.375, - -0.25, - 0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967338": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.375, - -0.25, - 0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967339": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.125, - -0.25, - -0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967340": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.125, - -0.25, - -0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967341": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.125, - -0.25, - 0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967342": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.125, - -0.25, - 0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967343": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.125, - -0.25, - -0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967344": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.125, - -0.25, - -0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967345": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.125, - -0.25, - 0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967346": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.125, - -0.25, - 0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967347": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.375, - -0.25, - -0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967348": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.375, - -0.25, - -0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967349": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.375, - -0.25, - 0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967350": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/tileSmall_teamBlue.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.375, - -0.25, - 0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - } - } - }, - "4294967351": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/bomb_teamRed.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.125, - 0.0625, - -0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.125, - 0.125, - 0.125 - ] - } - } - }, - "4294967352": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/bomb_teamRed.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.375, - 0.0625, - -0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.125, - 0.125, - 0.125 - ] - } - } - }, - "4294967353": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/bomb_teamRed.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.375, - 0.0625, - 0.125 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.125, - 0.125, - 0.125 - ] - } - } - }, - "4294967354": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/bomb_teamRed.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - -0.375, - 0.0625, - 0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.125, - 0.125, - 0.125 - ] - } - } - }, - "4294967355": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit-minigame/flag_teamYellow.gltf.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.375, - 0.0, - 0.375 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.125, - 0.125, - 0.125 - ] - } - } - } - } -} \ No newline at end of file diff --git a/scenes/frozen-lake-train.json b/scenes/frozen-lake-train.json deleted file mode 100644 index 77a5e8fb..00000000 --- a/scenes/frozen-lake-train.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967334": { - "components": { - "beet_ml::rl::q_table::QTable": [ - {} - ], - "beet_ml::rl_realtime::rl_session::RlSession": { - "params": { - "learn_params": { - "n_training_episodes": 10000, - "n_eval_episodes": 100, - "learning_rate": 0.7, - "max_steps": 99, - "gamma": 0.95, - "max_epsilon": 1.0, - "min_epsilon": 0.05, - "decay_rate": 0.0005 - }, - "map": { - "cells": [ - "Agent", - "Ice", - "Ice", - "Ice", - "Ice", - "Hole", - "Ice", - "Hole", - "Ice", - "Ice", - "Ice", - "Hole", - "Hole", - "Ice", - "Ice", - "Goal" - ], - "size": [ - 4, - 4 - ] - }, - "grid_to_world": { - "map_width": 1.0, - "cell_width": 0.25, - "map_size": [ - 4, - 4 - ], - "offset": [ - -0.375, - 0.0, - -0.375 - ] - } - }, - "filename": null, - "episode": 0 - } - } - } - } -} \ No newline at end of file diff --git a/scenes/hello-animation.json b/scenes/hello-animation.json deleted file mode 100644 index 99d1fa30..00000000 --- a/scenes/hello-animation.json +++ /dev/null @@ -1,224 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967333": { - "components": { - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": "Camera3d", - "bevy_core::name::Name": "Camera", - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 10.0, - 10.0, - 15.0 - ], - "rotation": [ - -0.19841658, - 0.28348857, - 0.060075704, - 0.9362991 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ] - } - } - }, - "4294967334": { - "components": { - "beetmash_scene::utils::animation_graph_placeholder::AnimationGraphPlaceholder": { - "root": 0, - "clips": [ - { - "clip": { - "path": "Fox.glb#Animation0" - }, - "parent": 0, - "weight": 1.0 - }, - { - "clip": { - "path": "Fox.glb#Animation1" - }, - "parent": 0, - "weight": 1.0 - } - ] - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "Fox.glb#Scene0" - }, - "bevy_animation::transition::AnimationTransitions": { - "main_animation": null, - "transitions": [] - }, - "bevy_core::name::Name": "Foxie", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967335 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.1, - 0.1, - 0.1 - ] - } - } - }, - "4294967335": { - "components": { - "beet_flow::actions::flow::sequence_flow::SequenceFlow": {}, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "bevy_core::name::Name": "Animation Behavior", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967336, - 4294967337 - ] - ], - "bevy_hierarchy::components::parent::Parent": [ - 4294967334 - ] - } - }, - "4294967336": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_spatial::animation::insert_on_animation_end::TriggerOnAnimationEnd": { - "value": [ - "Success" - ], - "target": "This", - "animation_index": 1, - "transition_duration": { - "secs": 0, - "nanos": 500000000 - } - }, - "beet_spatial::animation::play_animation::PlayAnimation": { - "animation": 1, - "trigger_if_playing": false, - "repeat": { - "Count": 1 - }, - "transition_duration": { - "secs": 0, - "nanos": 500000000 - } - }, - "beetmash_scene::utils::asset_placeholder::AssetPlaceholder": { - "path": "Fox.glb#Animation0" - }, - "bevy_core::name::Name": "Idle", - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - }, - "4294967337": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_spatial::animation::insert_on_animation_end::TriggerOnAnimationEnd": { - "value": [ - "Success" - ], - "target": "This", - "animation_index": 2, - "transition_duration": { - "secs": 0, - "nanos": 500000000 - } - }, - "beet_spatial::animation::play_animation::PlayAnimation": { - "animation": 2, - "trigger_if_playing": false, - "repeat": { - "Count": 4 - }, - "transition_duration": { - "secs": 0, - "nanos": 500000000 - } - }, - "beetmash_scene::utils::asset_placeholder::AssetPlaceholder": { - "path": "Fox.glb#Animation1" - }, - "bevy_core::name::Name": "Walking", - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - } - } -} \ No newline at end of file diff --git a/scenes/hello-ml.json b/scenes/hello-ml.json deleted file mode 100644 index 0153b0f7..00000000 --- a/scenes/hello-ml.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967334": { - "components": { - "beet_flow::actions::on_trigger::on_global_trigger::OnGlobalTrigger>": [ - { - "params": [], - "sources": [], - "target": "This" - } - ], - "beet_flow::actions::on_trigger::on_global_trigger::OnGlobalTrigger>>": [ - { - "params": {}, - "sources": [], - "target": "This" - } - ], - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_ml::language::selectors::sentence_flow::Sentence": [ - "please kill the baddies" - ], - "beet_ml::language::selectors::sentence_flow::SentenceFlow": {}, - "beetmash_core::render::block_app_ready::AssetLoadBlockAppReady": {}, - "beetmash_scene::utils::asset_placeholder::AssetPlaceholder": { - "path": "ml/default-bert.ron" - }, - "bevy_core::name::Name": "Sentence Flow", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967335, - 4294967336 - ] - ] - } - }, - "4294967335": { - "components": { - "beet_ml::language::selectors::sentence_flow::Sentence": [ - "heal" - ], - "bevy_core::name::Name": "Heal Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967334 - ] - } - }, - "4294967336": { - "components": { - "beet_ml::language::selectors::sentence_flow::Sentence": [ - "attack" - ], - "bevy_core::name::Name": "Attack Behavior", - "bevy_hierarchy::components::parent::Parent": [ - 4294967334 - ] - } - } - } -} \ No newline at end of file diff --git a/scenes/hello-world.json b/scenes/hello-world.json deleted file mode 100644 index 32be7b45..00000000 --- a/scenes/hello-world.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967333": { - "components": { - "beet_flow::actions::flow::sequence_flow::SequenceFlow": {}, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "bevy_core::name::Name": "Hello World Sequence", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967334, - 4294967335 - ] - ] - } - }, - "4294967334": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": [ - "Success" - ], - "sources": [], - "target": "This" - }, - "bevy_core::name::Name": "Hello", - "bevy_hierarchy::components::parent::Parent": [ - 4294967333 - ] - } - }, - "4294967335": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": [ - "Success" - ], - "sources": [], - "target": "This" - }, - "bevy_core::name::Name": "World", - "bevy_hierarchy::components::parent::Parent": [ - 4294967333 - ] - } - } - } -} \ No newline at end of file diff --git a/scenes/seek-3d.json b/scenes/seek-3d.json deleted file mode 100644 index 11bd92e9..00000000 --- a/scenes/seek-3d.json +++ /dev/null @@ -1,300 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967333": { - "components": { - "beet_examples::components::camera_distance::CameraDistance": { - "width": 80.0, - "offset": [ - 0.0, - 20.0, - 40.0 - ] - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": "Camera3d", - "bevy_core::name::Name": "Camera" - } - }, - "4294967334": { - "components": { - "beet_examples::components::follow_cursor::FollowCursor3d": { - "intersect_point": [ - 0.0, - 0.0, - 0.0 - ], - "intersect_plane": { - "normal": [ - 0.0, - 1.0, - 0.0 - ] - } - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "kaykit/cheese.glb#Scene0" - }, - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 20.0, - 0.0, - 40.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 3.0, - 3.0, - 3.0 - ] - } - } - }, - "4294967335": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity3d": [ - 5.0 - ], - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 7.0 - ], - "beet_spatial::steer::steer_bundle::MaxForce": [ - 0.5 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 10.0 - ], - "beet_spatial::steer::steer_target::SteerTarget": { - "Entity": 4294967334 - }, - "beetmash_scene::utils::animation_graph_placeholder::AnimationGraphPlaceholder": { - "root": 0, - "clips": [ - { - "clip": { - "path": "Fox.glb#Animation0" - }, - "parent": 0, - "weight": 1.0 - }, - { - "clip": { - "path": "Fox.glb#Animation1" - }, - "parent": 0, - "weight": 1.0 - } - ] - }, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Scene": "Fox.glb#Scene0" - }, - "bevy_animation::transition::AnimationTransitions": { - "main_animation": null, - "transitions": [] - }, - "bevy_core::name::Name": "Foxie", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967336 - ] - ], - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 0.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 0.1, - 0.1, - 0.1 - ] - } - } - }, - "4294967336": { - "components": { - "beet_flow::actions::flow::sequence_flow::SequenceFlow": {}, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::run_on_spawn::RunOnSpawn": {}, - "bevy_core::name::Name": "Seek Behavior", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967337, - 4294967338 - ] - ], - "bevy_hierarchy::components::parent::Parent": [ - 4294967335 - ] - } - }, - "4294967337": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": { - "Entity": 4294967335 - } - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967335 - ], - "beet_spatial::animation::insert_on_animation_end::TriggerOnAnimationEnd": { - "value": [ - "Success" - ], - "target": "This", - "animation_index": 1, - "transition_duration": { - "secs": 0, - "nanos": 500000000 - } - }, - "beet_spatial::animation::play_animation::PlayAnimation": { - "animation": 1, - "trigger_if_playing": false, - "repeat": "Never", - "transition_duration": { - "secs": 0, - "nanos": 500000000 - } - }, - "beetmash_scene::utils::asset_placeholder::AssetPlaceholder": { - "path": "Fox.glb#Animation0" - }, - "bevy_core::name::Name": "Idle", - "bevy_hierarchy::components::parent::Parent": [ - 4294967336 - ] - } - }, - "4294967338": { - "components": { - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "sources": [], - "target": { - "Entity": 4294967335 - } - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967335 - ], - "beet_spatial::animation::play_animation::PlayAnimation": { - "animation": 2, - "trigger_if_playing": false, - "repeat": "Forever", - "transition_duration": { - "secs": 0, - "nanos": 500000000 - } - }, - "beet_spatial::steer::steer_actions::end_on_arrive::EndOnArrive": { - "radius": 6.0 - }, - "beet_spatial::steer::steer_actions::seek::Seek": { - "on_not_found": "Warn" - }, - "bevy_core::name::Name": "Seek", - "bevy_hierarchy::components::parent::Parent": [ - 4294967336 - ] - } - } - } -} \ No newline at end of file diff --git a/scenes/seek.json b/scenes/seek.json deleted file mode 100644 index 1cb2c26a..00000000 --- a/scenes/seek.json +++ /dev/null @@ -1,129 +0,0 @@ -{ - "resources": {}, - "entities": { - "4294967333": { - "components": { - "beet_examples::components::follow_cursor::FollowCursor2d": {}, - "beetmash_core::render::block_app_ready::AssetLoadBlockAppReady": {}, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/planet_6.png" - }, - "bevy_core::name::Name": "Target", - "bevy_transform::components::global_transform::GlobalTransform": [ - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0, - 1.0, - 0.0, - 0.0, - 0.0 - ], - "bevy_transform::components::transform::Transform": { - "translation": [ - 200.0, - 0.0, - 0.0 - ], - "rotation": [ - 0.0, - 0.0, - 0.0, - 1.0 - ], - "scale": [ - 1.0, - 1.0, - 1.0 - ] - } - } - }, - "4294967334": { - "components": { - "beet_spatial::movement::force_bundle::Force": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Impulse": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::force_bundle::Mass": [ - 1.0 - ], - "beet_spatial::movement::force_bundle::Velocity": [ - [ - 0.0, - 0.0, - 0.0 - ] - ], - "beet_spatial::movement::rotate_to_velocity::RotateToVelocity2d": {}, - "beet_spatial::steer::steer_actions::arrive::ArriveRadius": [ - 350.0 - ], - "beet_spatial::steer::steer_bundle::MaxForce": [ - 5.0 - ], - "beet_spatial::steer::steer_bundle::MaxSpeed": [ - 500.0 - ], - "beet_spatial::steer::steer_target::SteerTarget": { - "Entity": 4294967333 - }, - "beetmash_core::render::block_app_ready::AssetLoadBlockAppReady": {}, - "beetmash_scene::utils::bundle_placeholder::BundlePlaceholder": { - "Sprite": "spaceship_pack/ship_2.png" - }, - "bevy_core::name::Name": "Agent", - "bevy_hierarchy::components::children::Children": [ - [ - 4294967335 - ] - ] - } - }, - "4294967335": { - "components": { - "beet_flow::actions::on_trigger::on_global_trigger::OnGlobalTrigger>>": [ - { - "params": {}, - "sources": [], - "target": "This" - } - ], - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>>": { - "params": {}, - "sources": [], - "target": "This" - }, - "beet_flow::actions::on_trigger::on_trigger_action::OnTrigger>": { - "params": [], - "sources": [], - "target": "This" - }, - "beet_flow::lifecycle::components::target_agent::TargetAgent": [ - 4294967334 - ], - "beet_spatial::steer::steer_actions::seek::Seek": { - "on_not_found": "Warn" - }, - "bevy_core::name::Name": "Seek", - "bevy_hierarchy::components::parent::Parent": [ - 4294967334 - ] - } - } - } -} \ No newline at end of file