no AssetLoader found for the following extension: ldtk in bevy_ecs_ldtk #9412
-
The title says it all I'm using bevy = "0.11.0" |
Beta Was this translation helpful? Give feedback.
Answered by
rparrett
Aug 10, 2023
Replies: 1 comment
-
It sounds like maybe you haven't added the App::new()
.add_plugins(
DefaultPlugins.set(ImagePlugin::default_nearest()),
)
.add_plugins(LdtkPlugin) // <---- this line
.add_systems(Startup, setup)
.insert_resource(LevelSelection::Index(0))
.register_ldtk_entity::<MyBundle>("MyEntityIdentifier")
.run(); The bevy_ecs_ldtk repo or the bevy_ecs_ldtk help thread on discord might be a better place to find help with that plugin. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Abubakar1122331
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It sounds like maybe you haven't added the
LdtkPlugin
to your app which would include that asset loader. See the commented line in this excerpt from the "basic" example.The bevy_ecs_ldtk repo or the bevy_ecs_ldtk help thread on discord might be a better place to find help with that plugin.