├── app.js ├── index.html ├── main.css └── textures ├── alpha ├── alphaRing.jpg └── alphaTexture.jpg ├── displacement └── displacement.jpg ├── environmentMaps ├── nx.jpg ├── ny.jpg ├── nz.jpg ├── px.jpg ├── py.jpg └── pz.jpg ├── img ├── 3dBackground.jpg ├── animayo.jpg ├── astralys.jpg ├── auriane.jpg ├── cmsFolio.jpg ├── dressOn.jpg ├── folio2019.jpg ├── folio2020.jpg ├── gamovore.jpg ├── id.jpg ├── internship.jpg ├── laDette.jpg ├── letterMask.jpg ├── letterMaskWork.jpg ├── mmorpion.jpg ├── newspaper.jpg ├── outroId.jpg ├── profile.jpg ├── terreDeBois.jpg └── thoma.jpg ├── models ├── scene.bin ├── scene.gltf └── textures │ ├── Plane_002_baseColor.jpeg │ ├── Plane_002_emissive.jpeg │ ├── Plane_002_metallicRoughness.png │ └── Plane_002_normal.png └── video └── reel.mp4 /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/app.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/index.html -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/main.css -------------------------------------------------------------------------------- /textures/alpha/alphaRing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/alpha/alphaRing.jpg -------------------------------------------------------------------------------- /textures/alpha/alphaTexture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/alpha/alphaTexture.jpg -------------------------------------------------------------------------------- /textures/displacement/displacement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/displacement/displacement.jpg -------------------------------------------------------------------------------- /textures/environmentMaps/nx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/environmentMaps/nx.jpg -------------------------------------------------------------------------------- /textures/environmentMaps/ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/environmentMaps/ny.jpg -------------------------------------------------------------------------------- /textures/environmentMaps/nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/environmentMaps/nz.jpg -------------------------------------------------------------------------------- /textures/environmentMaps/px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/environmentMaps/px.jpg -------------------------------------------------------------------------------- /textures/environmentMaps/py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/environmentMaps/py.jpg -------------------------------------------------------------------------------- /textures/environmentMaps/pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/environmentMaps/pz.jpg -------------------------------------------------------------------------------- /textures/img/3dBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/3dBackground.jpg -------------------------------------------------------------------------------- /textures/img/animayo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/animayo.jpg -------------------------------------------------------------------------------- /textures/img/astralys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/astralys.jpg -------------------------------------------------------------------------------- /textures/img/auriane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/auriane.jpg -------------------------------------------------------------------------------- /textures/img/cmsFolio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/cmsFolio.jpg -------------------------------------------------------------------------------- /textures/img/dressOn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/dressOn.jpg -------------------------------------------------------------------------------- /textures/img/folio2019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/folio2019.jpg -------------------------------------------------------------------------------- /textures/img/folio2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/folio2020.jpg -------------------------------------------------------------------------------- /textures/img/gamovore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/gamovore.jpg -------------------------------------------------------------------------------- /textures/img/id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/id.jpg -------------------------------------------------------------------------------- /textures/img/internship.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/internship.jpg -------------------------------------------------------------------------------- /textures/img/laDette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/laDette.jpg -------------------------------------------------------------------------------- /textures/img/letterMask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/letterMask.jpg -------------------------------------------------------------------------------- /textures/img/letterMaskWork.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/letterMaskWork.jpg -------------------------------------------------------------------------------- /textures/img/mmorpion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/mmorpion.jpg -------------------------------------------------------------------------------- /textures/img/newspaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/newspaper.jpg -------------------------------------------------------------------------------- /textures/img/outroId.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/outroId.jpg -------------------------------------------------------------------------------- /textures/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/profile.jpg -------------------------------------------------------------------------------- /textures/img/terreDeBois.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/terreDeBois.jpg -------------------------------------------------------------------------------- /textures/img/thoma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/img/thoma.jpg -------------------------------------------------------------------------------- /textures/models/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/models/scene.bin -------------------------------------------------------------------------------- /textures/models/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/models/scene.gltf -------------------------------------------------------------------------------- /textures/models/textures/Plane_002_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/models/textures/Plane_002_baseColor.jpeg -------------------------------------------------------------------------------- /textures/models/textures/Plane_002_emissive.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/models/textures/Plane_002_emissive.jpeg -------------------------------------------------------------------------------- /textures/models/textures/Plane_002_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/models/textures/Plane_002_metallicRoughness.png -------------------------------------------------------------------------------- /textures/models/textures/Plane_002_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/models/textures/Plane_002_normal.png -------------------------------------------------------------------------------- /textures/video/reel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAGGIx1404/awwwards-Rebuild/HEAD/textures/video/reel.mp4 --------------------------------------------------------------------------------