mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Use ``bevy
`` with default features in iOS example (#7042)
# Objective I am new to Bevy. And during my development, I noticed that the `iOS` example doesn't work. Example panics with next message: ```panicked at 'Resource requested by bevy_ui::widget::text::text_system does not exist: bevy_asset::assets::Assets```. I have asked for help in a `discord` iOS chat and there I receive a recommendation that it is possible that some bevy features missing. ## Solution So, I used ```bevy``` with default features.
This commit is contained in:
parent
09c64ffe9f
commit
2665299d1c
1 changed files with 1 additions and 11 deletions
|
@ -11,14 +11,4 @@ name = "bevy_ios_example"
|
|||
crate-type = ["staticlib"]
|
||||
|
||||
[dependencies]
|
||||
bevy = { path = "../../", features = [
|
||||
"bevy_audio",
|
||||
"bevy_winit",
|
||||
"bevy_core_pipeline",
|
||||
"bevy_pbr",
|
||||
"bevy_render",
|
||||
"bevy_text",
|
||||
"bevy_ui",
|
||||
"vorbis",
|
||||
"filesystem_watcher"
|
||||
], default-features = false}
|
||||
bevy = { path = "../../" }
|
||||
|
|
Loading…
Reference in a new issue