naia-lib / naia

a cross-platform (including Wasm!) networking library built in Rust. Intended to make multiplayer game development dead-simple & lightning-fast
Apache License 2.0
857 stars 61 forks source link

Bevy demo should use default Bevy #159

Closed connorcarpenter closed 1 year ago

connorcarpenter commented 1 year ago

The Bevy demo currently disables all default features, and pulls in bevy_* crates piecemeal. The intent of this is to show how to cut down on the final Wasm file size, as is best practice. However, a demo should be simple, that makes everything look more complicated than it is.

Also, I believe that this is causing native, non-Linux builds to not build. It's likely this change to the demo will also fix https://github.com/naia-lib/naia/issues/156

connorcarpenter commented 1 year ago

Implemented in https://github.com/naia-lib/naia/pull/162