Trouv / bevy_ecs_ldtk

ECS-friendly ldtk plugin for bevy, leveraging bevy_ecs_tilemap
Other
641 stars 73 forks source link

Pixel art tile textures are blurry - where can you set texture sampling options? #196

Closed cc959 closed 1 year ago

cc959 commented 1 year ago

image

Trouv commented 1 year ago

You likely need to set it on the bevy ImagePlugin. If you're using default plugins, you can do so like this:

App::new()
    .add_plugins(DefaultPlugins.set(ImagePlugin::default_nearest()))