BrandonDyer64 / bevy_wasm

Mod Bevy games with WASM
Apache License 2.0
94 stars 4 forks source link

Bevy features instead of individual crates #5

Closed BrandonDyer64 closed 1 year ago

BrandonDyer64 commented 1 year ago

Right now, all of the necessary bevy crates are imported individually.

bevy_app = "0.9"
bevy_ecs = "0.9"
bevy_log = "0.9"

Instead, this should be done through Bevy's features.

features = ["app", "ecs", "log"]