├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── assets └── textures │ ├── Dark │ ├── texture_01.png │ ├── texture_02.png │ ├── texture_03.png │ ├── texture_04.png │ ├── texture_05.png │ ├── texture_06.png │ ├── texture_07.png │ ├── texture_08.png │ ├── texture_09.png │ ├── texture_10.png │ ├── texture_11.png │ ├── texture_12.png │ └── texture_13.png │ ├── Green │ ├── texture_01.png │ ├── texture_02.png │ ├── texture_03.png │ ├── texture_04.png │ ├── texture_05.png │ ├── texture_06.png │ ├── texture_07.png │ ├── texture_08.png │ ├── texture_09.png │ ├── texture_10.png │ ├── texture_11.png │ ├── texture_12.png │ └── texture_13.png │ ├── Light │ ├── texture_01.png │ ├── texture_02.png │ ├── texture_03.png │ ├── texture_04.png │ ├── texture_05.png │ ├── texture_06.png │ ├── texture_07.png │ ├── texture_08.png │ ├── texture_09.png │ ├── texture_10.png │ ├── texture_11.png │ ├── texture_12.png │ └── texture_13.png │ ├── Orange │ ├── texture_01.png │ ├── texture_02.png │ ├── texture_03.png │ ├── texture_04.png │ ├── texture_05.png │ ├── texture_06.png │ ├── texture_07.png │ ├── texture_08.png │ ├── texture_09.png │ ├── texture_10.png │ ├── texture_11.png │ ├── texture_12.png │ └── texture_13.png │ ├── Purple │ ├── texture_01.png │ ├── texture_02.png │ ├── texture_03.png │ ├── texture_04.png │ ├── texture_05.png │ ├── texture_06.png │ ├── texture_07.png │ ├── texture_08.png │ ├── texture_09.png │ ├── texture_10.png │ ├── texture_11.png │ ├── texture_12.png │ └── texture_13.png │ └── Red │ ├── texture_01.png │ ├── texture_02.png │ ├── texture_03.png │ ├── texture_04.png │ ├── texture_05.png │ ├── texture_06.png │ ├── texture_07.png │ ├── texture_08.png │ ├── texture_09.png │ ├── texture_10.png │ ├── texture_11.png │ ├── texture_12.png │ └── texture_13.png ├── clippy.toml ├── examples └── 3d_simple_character │ ├── main.rs │ └── plugin.rs ├── examples_common ├── Cargo.toml └── src │ ├── camera │ ├── fly_camera.rs │ ├── mod.rs │ └── orbit_camera.rs │ ├── input.rs │ ├── level │ ├── common.rs │ ├── mod.rs │ ├── tracks │ │ ├── angled_walls.rs │ │ ├── capsule_forest.rs │ │ ├── crevices.rs │ │ ├── cylinder_bridge.rs │ │ ├── debris_field.rs │ │ ├── ground.rs │ │ ├── half_height_obstacles.rs │ │ ├── mod.rs │ │ ├── moving_platforms.rs │ │ ├── narrow_beams.rs │ │ ├── ramps.rs │ │ ├── ridges.rs │ │ ├── shape_obstacles.rs │ │ ├── stairs.rs │ │ └── uneven_patches.rs │ └── utils.rs │ └── lib.rs └── src ├── character.rs ├── lib.rs └── move_and_slide.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/README.md -------------------------------------------------------------------------------- /assets/textures/Dark/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_01.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_02.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_03.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_04.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_05.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_06.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_07.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_08.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_09.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_10.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_11.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_12.png -------------------------------------------------------------------------------- /assets/textures/Dark/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Dark/texture_13.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_01.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_02.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_03.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_04.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_05.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_06.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_07.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_08.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_09.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_10.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_11.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_12.png -------------------------------------------------------------------------------- /assets/textures/Green/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Green/texture_13.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_01.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_02.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_03.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_04.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_05.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_06.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_07.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_08.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_09.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_10.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_11.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_12.png -------------------------------------------------------------------------------- /assets/textures/Light/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Light/texture_13.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_01.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_02.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_03.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_04.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_05.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_06.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_07.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_08.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_09.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_10.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_11.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_12.png -------------------------------------------------------------------------------- /assets/textures/Orange/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Orange/texture_13.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_01.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_02.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_03.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_04.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_05.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_06.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_07.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_08.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_09.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_10.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_11.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_12.png -------------------------------------------------------------------------------- /assets/textures/Purple/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Purple/texture_13.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_01.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_02.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_03.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_04.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_05.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_06.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_07.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_08.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_09.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_10.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_11.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_12.png -------------------------------------------------------------------------------- /assets/textures/Red/texture_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/assets/textures/Red/texture_13.png -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/clippy.toml -------------------------------------------------------------------------------- /examples/3d_simple_character/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples/3d_simple_character/main.rs -------------------------------------------------------------------------------- /examples/3d_simple_character/plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples/3d_simple_character/plugin.rs -------------------------------------------------------------------------------- /examples_common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/Cargo.toml -------------------------------------------------------------------------------- /examples_common/src/camera/fly_camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/camera/fly_camera.rs -------------------------------------------------------------------------------- /examples_common/src/camera/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/camera/mod.rs -------------------------------------------------------------------------------- /examples_common/src/camera/orbit_camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/camera/orbit_camera.rs -------------------------------------------------------------------------------- /examples_common/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/input.rs -------------------------------------------------------------------------------- /examples_common/src/level/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/common.rs -------------------------------------------------------------------------------- /examples_common/src/level/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/mod.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/angled_walls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/angled_walls.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/capsule_forest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/capsule_forest.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/crevices.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/crevices.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/cylinder_bridge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/cylinder_bridge.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/debris_field.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/debris_field.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/ground.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/ground.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/half_height_obstacles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/half_height_obstacles.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/mod.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/moving_platforms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/moving_platforms.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/narrow_beams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/narrow_beams.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/ramps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/ramps.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/ridges.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/ridges.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/shape_obstacles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/shape_obstacles.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/stairs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/stairs.rs -------------------------------------------------------------------------------- /examples_common/src/level/tracks/uneven_patches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/tracks/uneven_patches.rs -------------------------------------------------------------------------------- /examples_common/src/level/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/level/utils.rs -------------------------------------------------------------------------------- /examples_common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/examples_common/src/lib.rs -------------------------------------------------------------------------------- /src/character.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/src/character.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/move_and_slide.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ploruto/kcc_prototyping/HEAD/src/move_and_slide.rs --------------------------------------------------------------------------------