├── .gitignore ├── README.md ├── index.html ├── package.json ├── public ├── airplane.svg ├── fonts │ ├── DMSerifDisplay-Regular.ttf │ └── Inter-Regular.ttf ├── images │ └── wawa.svg ├── models │ ├── airplane │ │ └── model.glb │ └── cloud │ │ └── model.gltf └── vite.svg ├── src ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── Airplane.jsx │ ├── Background.jsx │ ├── Cloud.jsx │ ├── Experience.jsx │ ├── Overlay.jsx │ ├── Speed.jsx │ └── TextSection.jsx ├── contexts │ └── Play.jsx ├── index.css ├── main.jsx └── utils │ └── fadeMaterial.js ├── vite.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/package.json -------------------------------------------------------------------------------- /public/airplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/public/airplane.svg -------------------------------------------------------------------------------- /public/fonts/DMSerifDisplay-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/public/fonts/DMSerifDisplay-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/public/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /public/images/wawa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/public/images/wawa.svg -------------------------------------------------------------------------------- /public/models/airplane/model.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/public/models/airplane/model.glb -------------------------------------------------------------------------------- /public/models/cloud/model.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/public/models/cloud/model.gltf -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/Airplane.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/components/Airplane.jsx -------------------------------------------------------------------------------- /src/components/Background.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/components/Background.jsx -------------------------------------------------------------------------------- /src/components/Cloud.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/components/Cloud.jsx -------------------------------------------------------------------------------- /src/components/Experience.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/components/Experience.jsx -------------------------------------------------------------------------------- /src/components/Overlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/components/Overlay.jsx -------------------------------------------------------------------------------- /src/components/Speed.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/components/Speed.jsx -------------------------------------------------------------------------------- /src/components/TextSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/components/TextSection.jsx -------------------------------------------------------------------------------- /src/contexts/Play.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/contexts/Play.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/utils/fadeMaterial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/src/utils/fadeMaterial.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/vite.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wass08/r3f-wawatmos-final/HEAD/yarn.lock --------------------------------------------------------------------------------