Skip to content

Commit

Permalink
Add more component impls
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGVSV committed Apr 29, 2023
1 parent e654af9 commit 55bd170
Show file tree
Hide file tree
Showing 4 changed files with 1,353 additions and 67 deletions.
6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ default = [
# Bevy Features
"bevy_animation",
"bevy_audio",
"bevy_core_pipeline",
"bevy_gltf",
"bevy_pbr",
"bevy_render",
"bevy_scene",
"bevy_sprite",
"bevy_text",
"bevy_ui",
]

# When enabled, entities will automatically use a prototype's ID as its `Name`
Expand All @@ -43,6 +45,8 @@ yaml = ["dep:serde_yaml"]
bevy_animation = ["bevy/bevy_animation", "bevy_proto_backend/bevy_animation"]
# Enables registrations for types available with Bevy's bevy_audio feature
bevy_audio = ["bevy/bevy_audio", "bevy_proto_backend/bevy_audio"]
# Enables registrations for types available with Bevy's bevy_core_pipeline feature
bevy_core_pipeline = ["bevy/bevy_core_pipeline", "bevy_proto_backend/bevy_core_pipeline"]
# Enables registrations for types available with Bevy's bevy_gltf feature
bevy_gltf = ["bevy/bevy_gltf", "bevy_proto_backend/bevy_gltf"]
# Enables registrations for types available with Bevy's bevy_pbr feature
Expand All @@ -55,6 +59,8 @@ bevy_scene = ["bevy/bevy_scene", "bevy_proto_backend/bevy_scene"]
bevy_sprite = ["bevy/bevy_sprite", "bevy_proto_backend/bevy_sprite"]
# Enables registrations for types available with Bevy's bevy_text feature
bevy_text = ["bevy/bevy_text", "bevy_proto_backend/bevy_text"]
# Enables registrations for types available with Bevy's bevy_ui feature
bevy_ui = ["bevy/bevy_ui", "bevy_proto_backend/bevy_ui"]

[dependencies]
bevy_proto_backend = { version = "0.1.1", path = "./bevy_proto_backend" }
Expand Down
6 changes: 6 additions & 0 deletions bevy_proto_backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ default = [
# Bevy Features
"bevy_animation",
"bevy_audio",
"bevy_core_pipeline",
"bevy_gltf",
"bevy_pbr",
"bevy_render",
"bevy_scene",
"bevy_sprite",
"bevy_text",
"bevy_ui"
]

# When enabled, entities will automatically use a prototype's ID as its `Name`
Expand All @@ -30,6 +32,8 @@ auto_name = []
bevy_animation = ["bevy/bevy_animation"]
# Enables registrations for types available with Bevy's bevy_audio feature
bevy_audio = ["bevy/bevy_audio"]
# Enables registrations for types available with Bevy's bevy_core_pipeline feature
bevy_core_pipeline = ["bevy/bevy_core_pipeline"]
# Enables registrations for types available with Bevy's bevy_gltf feature
bevy_gltf = ["bevy/bevy_gltf"]
# Enables registrations for types available with Bevy's bevy_pbr feature
Expand All @@ -42,6 +46,8 @@ bevy_scene = ["bevy/bevy_scene"]
bevy_sprite = ["bevy/bevy_sprite"]
# Enables registrations for types available with Bevy's bevy_text feature
bevy_text = ["bevy/bevy_text"]
# Enables registrations for types available with Bevy's bevy_ui feature
bevy_ui = ["bevy/bevy_ui"]

[dependencies]
bevy_proto_derive = { version = "0.3.1", path = "../bevy_proto_derive" }
Expand Down
Loading

0 comments on commit 55bd170

Please sign in to comment.