Skip to content

Commit 5cfcbf4

Browse files
authored
fix imports in example ui_texture_slice_flip_and_tile (#15064)
# Objective - don't use a sub crate in an example ## Solution - fix imports
1 parent 54aa45e commit 5cfcbf4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

examples/ui/ui_texture_slice_flip_and_tile.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
//! This example illustrates how to how to flip and tile images with 9-slicing in the UI.
22
3-
use bevy::{prelude::*, winit::WinitSettings};
4-
use bevy_render::texture::{ImageLoaderSettings, ImageSampler};
3+
use bevy::{
4+
prelude::*,
5+
render::texture::{ImageLoaderSettings, ImageSampler},
6+
winit::WinitSettings,
7+
};
58

69
fn main() {
710
App::new()

0 commit comments

Comments
 (0)