world rendering

This commit is contained in:
Evan Pratten 2021-04-24 13:40:23 -04:00
parent 360dd59ca9
commit 07acb6335b
2 changed files with 22 additions and 1 deletions

View File

@ -31,7 +31,21 @@ impl InGameScreen {
context_2d: &mut RaylibMode2D<RaylibDrawHandle>, context_2d: &mut RaylibMode2D<RaylibDrawHandle>,
game_core: &mut GameCore, game_core: &mut GameCore,
) { ) {
context_2d.draw_circle(0, 0, 10.0, Color::BLACK); // Build source bounds
let source_bounds = Rectangle {
x: 0.0,
y: 0.0,
width: game_core.resources.cave_mid_layer.width as f32,
height: game_core.resources.cave_mid_layer.height as f32,
};
// Render the world texture
context_2d.draw_texture_rec(
&game_core.resources.cave_mid_layer,
source_bounds,
Vector2::zero(),
Color::WHITE,
);
} }
} }

View File

@ -16,6 +16,9 @@ pub struct GlobalResources {
pub player_animation_regular: FrameAnimationWrapper, pub player_animation_regular: FrameAnimationWrapper,
pub player_animation_boost_charge: FrameAnimationWrapper, pub player_animation_boost_charge: FrameAnimationWrapper,
pub player_animation_boost: FrameAnimationWrapper, pub player_animation_boost: FrameAnimationWrapper,
// Cave
pub cave_mid_layer: Texture2D
} }
impl GlobalResources { impl GlobalResources {
@ -56,6 +59,10 @@ impl GlobalResources {
21, 21,
30, 30,
), ),
cave_mid_layer: raylib.load_texture_from_image(
&thread,
&Image::load_image("./assets/img/map/cave.png")?,
)?,
}) })
} }
} }