Skip to content

Commit

Permalink
Resize textures
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmerlin committed Dec 11, 2023
1 parent 74cffa5 commit 9e3432a
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
Binary file modified assets/parallax/00_sky.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/parallax/00_sky_full.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/parallax/05_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/environment/city.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn setup_city(mut commands: Commands, assets: Res<AssetServer>, level: Res<L
));
};

spawn(3840.0, 4634.0, 100.0, 0.5, true, "05_foreground");
spawn(3840.0, 2048.0, 100.0, 0.5, true, "05_foreground");
spawn(3840.0, 691.0, -5.0, 0.0, true, "04_street");
spawn(3840.0, 818.0, -10.0, 0.0, true, "03_main");
spawn(3840.0, 1465.0, -20.0, -0.2, true, "02_middle");
Expand Down
2 changes: 1 addition & 1 deletion src/level.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ pub const DEFAULT_LEVEL: Level = Level {
..default_level_base()
}],
enabled_effects: &DEFAULT_EFFECTS,
effect_likelihood: 0.5,
effect_likelihood: 0.05,
intro_text: "Welcome to the game!",
rain: None,
friction: 0.5,
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub const BARREL_LENGTH: f32 = 3.5;

fn main() {
App::new()
.insert_resource(ClearColor(Color::rgb_u8(250, 225, 124)))
.insert_resource(ClearColor(Color::rgb_u8(44, 79, 255)))
.add_plugins((
// Bevy plugins
DefaultPlugins.set(WindowPlugin {
Expand Down

0 comments on commit 9e3432a

Please sign in to comment.