Skip to content

Latest commit

 

History

History
77 lines (60 loc) · 2.58 KB

textures.md

File metadata and controls

77 lines (60 loc) · 2.58 KB

Textures

We can not only change colors of added shapes, but also add textures to the shapes. In other words, we can paste an image onto a shape.

We assume we have an image named bevy_logo_dark.png in the assets directory. The image looks like this:

bevy_logo_dark

We use a method that is similar to how we display images.

fn setup(
    mut commands: Commands,
    mut meshes: ResMut<Assets<Mesh>>,
    mut materials: ResMut<Assets<ColorMaterial>>,
    asset_server: Res<AssetServer>,
) {
    commands.spawn(Camera2dBundle::default());

    commands.spawn(ColorMesh2dBundle {
        mesh: meshes.add(Circle::new(50.).into()).into(),
        material: materials.add(asset_server.load("bevy_logo_dark.png").into()),
        ..default()
    });
}

We use resource AssetServer to load the image. The image is added to Assets<ColorMaterial>, and then its Handle is assigned to material of ColorMesh2dBundle.

The full code is as follows:

use bevy::{
    app::{App, Startup},
    asset::{AssetServer, Assets},
    core_pipeline::core_2d::Camera2dBundle,
    ecs::system::{Commands, Res, ResMut},
    prelude::default,
    render::mesh::{shape::Circle, Mesh},
    sprite::{ColorMaterial, ColorMesh2dBundle},
    DefaultPlugins,
};

fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_systems(Startup, setup)
        .run();
}

fn setup(
    mut commands: Commands,
    mut meshes: ResMut<Assets<Mesh>>,
    mut materials: ResMut<Assets<ColorMaterial>>,
    asset_server: Res<AssetServer>,
) {
    commands.spawn(Camera2dBundle::default());

    commands.spawn(ColorMesh2dBundle {
        mesh: meshes.add(Circle::new(50.).into()).into(),
        material: materials.add(asset_server.load("bevy_logo_dark.png").into()),
        ..default()
    });
}

Result:

Textures

We can see that the image is mapped automatically onto the shape.

➡️ Next: Animated Transformation

📘 Back: Table of contents