ethereumdegen / bevy_mesh_terrain

MIT License
39 stars 5 forks source link

only use bevy features that are required by this plugin #12

Open mattdm opened 10 months ago

mattdm commented 10 months ago

For example

[dependencies]
bevy = { version = "0.11", default-features = false, features = [
  "bevy_asset",
  "bevy_render",
  "bevy_pbr",
] }

That way, default features which aren't used by the end app / game don't get turned on unnecessarily.