├── .gitignore ├── .rusty-hook.toml ├── Cargo.toml ├── README.md ├── assets ├── Idle.png ├── Run.png ├── demo.gif ├── parallax-forest-back-trees.png ├── parallax-forest-front-trees.png ├── parallax-forest-lights.png └── parallax-forest-middle-trees.png ├── credits.txt ├── examples └── forest.rs └── src ├── layer.rs ├── lib.rs └── window_size.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.rusty-hook.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/.rusty-hook.toml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/README.md -------------------------------------------------------------------------------- /assets/Idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/assets/Idle.png -------------------------------------------------------------------------------- /assets/Run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/assets/Run.png -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/parallax-forest-back-trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/assets/parallax-forest-back-trees.png -------------------------------------------------------------------------------- /assets/parallax-forest-front-trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/assets/parallax-forest-front-trees.png -------------------------------------------------------------------------------- /assets/parallax-forest-lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/assets/parallax-forest-lights.png -------------------------------------------------------------------------------- /assets/parallax-forest-middle-trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/assets/parallax-forest-middle-trees.png -------------------------------------------------------------------------------- /credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/credits.txt -------------------------------------------------------------------------------- /examples/forest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/examples/forest.rs -------------------------------------------------------------------------------- /src/layer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/src/layer.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/window_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/btrepp/bevy-prototype-parallax/HEAD/src/window_size.rs --------------------------------------------------------------------------------