├── .gitignore ├── LICENSE ├── README.md ├── css └── base.css ├── favicon.ico ├── index.html ├── package.json ├── public └── environment.glb ├── src ├── App.jsx ├── index.css ├── main.jsx └── theatreState.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/README.md -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/css/base.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/package.json -------------------------------------------------------------------------------- /public/environment.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/public/environment.glb -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/theatreState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/src/theatreState.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewPrifer/CodropsCameraFlyThroughTutorial/HEAD/yarn.lock --------------------------------------------------------------------------------