diff --git a/game/assets/levels/level_0/background.png b/game/assets/levels/level_0/background.png index 8fc5cff..1e6e438 100644 Binary files a/game/assets/levels/level_0/background.png and b/game/assets/levels/level_0/background.png differ diff --git a/game/src/scenes/ingame_scene/level/loader.rs b/game/src/scenes/ingame_scene/level/loader.rs index 3ca4add..8680ae3 100644 --- a/game/src/scenes/ingame_scene/level/loader.rs +++ b/game/src/scenes/ingame_scene/level/loader.rs @@ -1,9 +1,6 @@ use raylib::{RaylibHandle, RaylibThread}; -use crate::{ - utilities::datastore::{load_texture_from_internal_data, ResourceLoadError}, - StaticGameData, -}; +use crate::{StaticGameData, utilities::{datastore::{load_texture_from_internal_data, ResourceLoadError}, world_paint_texture::WorldPaintTexture}}; use super::Level; @@ -26,13 +23,15 @@ pub fn load_all_levels( let mut levels = Vec::new(); for level_name in &level_names { + + levels.push(Level { name: level_name.to_string(), - background_tex: load_texture_from_internal_data( + background_tex: WorldPaintTexture::new(load_texture_from_internal_data( raylib_handle, thread, &format!("levels/{}/background.png", level_name), - )?, + )?), platform_tex: load_texture_from_internal_data( raylib_handle, thread, diff --git a/game/src/scenes/ingame_scene/level/mod.rs b/game/src/scenes/ingame_scene/level/mod.rs index 2119b36..1c48789 100644 --- a/game/src/scenes/ingame_scene/level/mod.rs +++ b/game/src/scenes/ingame_scene/level/mod.rs @@ -1,11 +1,13 @@ use raylib::{math::Rectangle, texture::Texture2D}; +use crate::utilities::world_paint_texture::WorldPaintTexture; + pub mod loader; #[derive(Debug)] pub struct Level { pub name: String, - pub background_tex: Texture2D, + pub background_tex: WorldPaintTexture, pub platform_tex: Texture2D, pub colliders: Vec } diff --git a/game/src/scenes/ingame_scene/world.rs b/game/src/scenes/ingame_scene/world.rs index 7a46244..817c4ca 100644 --- a/game/src/scenes/ingame_scene/world.rs +++ b/game/src/scenes/ingame_scene/world.rs @@ -22,7 +22,7 @@ impl WorldSpaceRender for InGameScreen { let cur_level = self.levels.get(self.current_level_idx).unwrap(); // Render the world background - // self.world_background.render(raylib, Vector2::new(0.0, -1080.0), &self.camera); + cur_level.background_tex.render(raylib, Vector2::new(0.0, -1080.0), &self.camera); // Render the platform layer raylib.draw_texture_v(