bg rendering

This commit is contained in:
Evan Pratten 2021-10-02 18:55:38 -04:00
parent db28c7403b
commit 3b70a36e88
4 changed files with 9 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

@ -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,

View File

@ -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<Rectangle>
}

View File

@ -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(