├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── UNLICENSE ├── resources ├── bindings_config.ron └── display_config.ron ├── src ├── components.rs ├── entities.rs ├── main.rs └── systems │ ├── animation.rs │ ├── control.rs │ ├── mod.rs │ └── physics.rs └── texture ├── BG.png ├── BG.ron ├── Crate.png ├── Crate.ron ├── ground.png ├── ground.ron └── spritesheet.png /.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/UNLICENSE -------------------------------------------------------------------------------- /resources/bindings_config.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/resources/bindings_config.ron -------------------------------------------------------------------------------- /resources/display_config.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/resources/display_config.ron -------------------------------------------------------------------------------- /src/components.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/src/components.rs -------------------------------------------------------------------------------- /src/entities.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/src/entities.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/systems/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/src/systems/animation.rs -------------------------------------------------------------------------------- /src/systems/control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/src/systems/control.rs -------------------------------------------------------------------------------- /src/systems/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/src/systems/mod.rs -------------------------------------------------------------------------------- /src/systems/physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/src/systems/physics.rs -------------------------------------------------------------------------------- /texture/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/texture/BG.png -------------------------------------------------------------------------------- /texture/BG.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/texture/BG.ron -------------------------------------------------------------------------------- /texture/Crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/texture/Crate.png -------------------------------------------------------------------------------- /texture/Crate.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/texture/Crate.ron -------------------------------------------------------------------------------- /texture/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/texture/ground.png -------------------------------------------------------------------------------- /texture/ground.ron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/texture/ground.ron -------------------------------------------------------------------------------- /texture/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoshMcguigan/amethyst-2d-platformer-demo/HEAD/texture/spritesheet.png --------------------------------------------------------------------------------