-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dep: change from bevy_ecs etc to bevy
- Loading branch information
Showing
100 changed files
with
507 additions
and
1,506 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
pub mod chat_gpt; | ||
#[allow(unused_imports)] | ||
pub use self::chat_gpt::*; | ||
pub mod llm; | ||
#[allow(unused_imports)] | ||
pub use self::llm::*; | ||
pub mod hello_world; | ||
#[allow(unused_imports)] | ||
pub use self::hello_world::*; | ||
pub mod llm; | ||
#[allow(unused_imports)] | ||
pub use self::llm::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
use crate::prelude::*; | ||
use bevy_app::prelude::*; | ||
use bevy::prelude::*; | ||
use extend::ext; | ||
use forky_core::RcCell; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use bevy_utils::HashMap; | ||
use bevy::utils::HashMap; | ||
use extend::ext; | ||
use std::hash::Hash; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
pub mod vec; | ||
#[allow(unused_imports)] | ||
pub use self::vec::*; | ||
pub mod transform_x; | ||
#[allow(unused_imports)] | ||
pub use self::transform_x::*; | ||
pub mod app; | ||
#[allow(unused_imports)] | ||
pub use self::app::*; | ||
pub mod quat; | ||
pub mod app_res; | ||
#[allow(unused_imports)] | ||
pub use self::quat::*; | ||
pub use self::app_res::*; | ||
pub mod global_transform; | ||
#[allow(unused_imports)] | ||
pub use self::global_transform::*; | ||
pub mod map; | ||
#[allow(unused_imports)] | ||
pub use self::map::*; | ||
pub mod app_res; | ||
#[allow(unused_imports)] | ||
pub use self::app_res::*; | ||
pub mod pose; | ||
#[allow(unused_imports)] | ||
pub use self::pose::*; | ||
pub mod quat; | ||
#[allow(unused_imports)] | ||
pub use self::quat::*; | ||
pub mod transform_x; | ||
#[allow(unused_imports)] | ||
pub use self::transform_x::*; | ||
pub mod vec; | ||
#[allow(unused_imports)] | ||
pub use self::vec::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use bevy_math::prelude::*; | ||
use bevy::prelude::*; | ||
use extend::ext; | ||
use forky_core::*; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use bevy_math::prelude::*; | ||
use bevy::prelude::*; | ||
use extend::ext; | ||
use rand::Rng; | ||
use std::f32::consts::PI; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
pub mod components; | ||
pub mod extensions; | ||
// pub mod systems; | ||
|
||
|
||
pub mod prelude { | ||
pub use crate::components::*; | ||
pub use crate::extensions::*; | ||
// pub use crate::systems::*; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
pub mod vec; | ||
#[allow(unused_imports)] | ||
pub use self::vec::*; | ||
pub mod app; | ||
#[allow(unused_imports)] | ||
pub use self::app::*; | ||
pub mod quat; | ||
#[allow(unused_imports)] | ||
pub use self::quat::*; | ||
pub mod vec; | ||
#[allow(unused_imports)] | ||
pub use self::vec::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
use bevy_math::prelude::*; | ||
use bevy::prelude::*; | ||
use forky_bevy::prelude::*; | ||
use sweet::*; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
pub mod proxy; | ||
#[allow(unused_imports)] | ||
pub use self::proxy::*; | ||
pub mod tls; | ||
#[allow(unused_imports)] | ||
pub use self::tls::*; | ||
pub mod address; | ||
#[allow(unused_imports)] | ||
pub use self::address::*; | ||
pub mod command; | ||
#[allow(unused_imports)] | ||
pub use self::command::*; | ||
pub mod proxy; | ||
#[allow(unused_imports)] | ||
pub use self::proxy::*; | ||
pub mod server; | ||
#[allow(unused_imports)] | ||
pub use self::server::*; | ||
pub mod command; | ||
pub mod tls; | ||
#[allow(unused_imports)] | ||
pub use self::command::*; | ||
pub use self::tls::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
pub mod command_all; | ||
#[allow(unused_imports)] | ||
pub use self::command_all::*; | ||
pub mod lightning; | ||
#[allow(unused_imports)] | ||
pub use self::lightning::*; | ||
pub mod command_file; | ||
#[allow(unused_imports)] | ||
pub use self::command_file::*; | ||
pub mod type_files; | ||
#[allow(unused_imports)] | ||
pub use self::type_files::*; | ||
pub mod cli_all; | ||
#[allow(unused_imports)] | ||
pub use self::cli_all::*; | ||
pub mod command; | ||
#[allow(unused_imports)] | ||
pub use self::command::*; | ||
pub mod command_all; | ||
#[allow(unused_imports)] | ||
pub use self::command_all::*; | ||
pub mod command_file; | ||
#[allow(unused_imports)] | ||
pub use self::command_file::*; | ||
pub mod index_files; | ||
#[allow(unused_imports)] | ||
pub use self::index_files::*; | ||
pub mod lightning; | ||
#[allow(unused_imports)] | ||
pub use self::lightning::*; | ||
pub mod type_files; | ||
#[allow(unused_imports)] | ||
pub use self::type_files::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
pub mod test_mod; | ||
#[allow(unused_imports)] | ||
pub use self::test_mod::*; | ||
pub mod _test_use; | ||
pub mod __test_sub_dir; | ||
#[allow(unused_imports)] | ||
pub use self::__test_sub_dir::*; | ||
pub mod _test_use; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
pub mod num_x; | ||
#[allow(unused_imports)] | ||
pub use self::num_x::*; | ||
pub mod path_buf; | ||
#[allow(unused_imports)] | ||
pub use self::path_buf::*; | ||
pub mod vec; | ||
#[allow(unused_imports)] | ||
pub use self::vec::*; | ||
pub mod duration; | ||
#[allow(unused_imports)] | ||
pub use self::duration::*; | ||
pub mod str_x; | ||
pub mod num_x; | ||
#[allow(unused_imports)] | ||
pub use self::str_x::*; | ||
pub use self::num_x::*; | ||
pub mod option; | ||
#[allow(unused_imports)] | ||
pub use self::option::*; | ||
pub mod path; | ||
#[allow(unused_imports)] | ||
pub use self::path::*; | ||
pub mod string; | ||
pub mod path_buf; | ||
#[allow(unused_imports)] | ||
pub use self::string::*; | ||
pub use self::path_buf::*; | ||
pub mod result_x; | ||
#[allow(unused_imports)] | ||
pub use self::result_x::*; | ||
pub mod option; | ||
pub mod string; | ||
#[allow(unused_imports)] | ||
pub use self::option::*; | ||
pub use self::string::*; | ||
pub mod str_x; | ||
#[allow(unused_imports)] | ||
pub use self::str_x::*; | ||
pub mod vec; | ||
#[allow(unused_imports)] | ||
pub use self::vec::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pub mod funcs; | ||
#[allow(unused_imports)] | ||
pub use self::funcs::*; | ||
pub mod constants; | ||
#[allow(unused_imports)] | ||
pub use self::constants::*; | ||
pub mod funcs; | ||
#[allow(unused_imports)] | ||
pub use self::funcs::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pub mod funcs; | ||
#[allow(unused_imports)] | ||
pub use self::funcs::*; | ||
pub mod constants; | ||
#[allow(unused_imports)] | ||
pub use self::constants::*; | ||
pub mod funcs; | ||
#[allow(unused_imports)] | ||
pub use self::funcs::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pub mod drop_utils; | ||
#[allow(unused_imports)] | ||
pub use self::drop_utils::*; | ||
pub mod async_utils; | ||
#[allow(unused_imports)] | ||
pub use self::async_utils::*; | ||
pub mod drop_utils; | ||
#[allow(unused_imports)] | ||
pub use self::drop_utils::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
pub mod num_x; | ||
#[allow(unused_imports)] | ||
pub use self::num_x::*; | ||
pub mod vec; | ||
pub mod path; | ||
#[allow(unused_imports)] | ||
pub use self::vec::*; | ||
pub use self::path::*; | ||
pub mod str_x; | ||
#[allow(unused_imports)] | ||
pub use self::str_x::*; | ||
pub mod path; | ||
pub mod vec; | ||
#[allow(unused_imports)] | ||
pub use self::path::*; | ||
pub use self::vec::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pub mod extensions; | ||
pub mod forky_event; | ||
pub mod graph; | ||
pub mod math; | ||
pub mod misc; | ||
pub mod pointers; | ||
pub mod math; | ||
pub mod forky_event; | ||
pub mod extensions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pub mod _timer; | ||
pub mod _smart_leds_adapter_rgbw; | ||
pub mod _esp_device; | ||
pub mod _led_controller_rgb; | ||
pub mod _logger; | ||
pub mod _led_controller_rgbw; | ||
pub mod _logger; | ||
pub mod _smart_leds_adapter_rgbw; | ||
pub mod _timer; |
Oops, something went wrong.