Skip to content

Commit

Permalink
fix imports in example ui_texture_slice_flip_and_tile (#15064)
Browse files Browse the repository at this point in the history
# Objective

- don't use a sub crate in an example

## Solution

- fix imports
  • Loading branch information
mockersf authored Sep 6, 2024
1 parent 54aa45e commit 5cfcbf4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions examples/ui/ui_texture_slice_flip_and_tile.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
//! This example illustrates how to how to flip and tile images with 9-slicing in the UI.

use bevy::{prelude::*, winit::WinitSettings};
use bevy_render::texture::{ImageLoaderSettings, ImageSampler};
use bevy::{
prelude::*,
render::texture::{ImageLoaderSettings, ImageSampler},
winit::WinitSettings,
};

fn main() {
App::new()
Expand Down

0 comments on commit 5cfcbf4

Please sign in to comment.