├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── assets ├── BistroExteriorFakeGI.gltf └── environment_maps │ ├── info.txt │ ├── pisa_diffuse_rgb9e5_zstd.ktx2 │ ├── pisa_specular_rgb9e5_zstd.ktx2 │ ├── san_giuseppe_bridge_4k_diffuse.ktx2 │ └── san_giuseppe_bridge_4k_specular.ktx2 ├── demo.jpg └── src ├── camera_controller.rs ├── convert.rs ├── main.rs └── mipmap_generator.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/README.md -------------------------------------------------------------------------------- /assets/BistroExteriorFakeGI.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/assets/BistroExteriorFakeGI.gltf -------------------------------------------------------------------------------- /assets/environment_maps/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/assets/environment_maps/info.txt -------------------------------------------------------------------------------- /assets/environment_maps/pisa_diffuse_rgb9e5_zstd.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/assets/environment_maps/pisa_diffuse_rgb9e5_zstd.ktx2 -------------------------------------------------------------------------------- /assets/environment_maps/pisa_specular_rgb9e5_zstd.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/assets/environment_maps/pisa_specular_rgb9e5_zstd.ktx2 -------------------------------------------------------------------------------- /assets/environment_maps/san_giuseppe_bridge_4k_diffuse.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/assets/environment_maps/san_giuseppe_bridge_4k_diffuse.ktx2 -------------------------------------------------------------------------------- /assets/environment_maps/san_giuseppe_bridge_4k_specular.ktx2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/assets/environment_maps/san_giuseppe_bridge_4k_specular.ktx2 -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/demo.jpg -------------------------------------------------------------------------------- /src/camera_controller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/src/camera_controller.rs -------------------------------------------------------------------------------- /src/convert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/src/convert.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mipmap_generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DGriffin91/bevy_bistro_scene/HEAD/src/mipmap_generator.rs --------------------------------------------------------------------------------