This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use bevy::prelude::*; | |
const PLAYER_SPEED: f32 = 500.0; | |
const PLAYER_SIZE: Vec3 = Vec3::new(32.0, 32.0, 0.0); | |
fn main() { | |
App::new() | |
.add_plugins(DefaultPlugins) | |
//.insert_resource(Time::<Fixed>::from_seconds(0.125)) // Test different timesteps here |