├── .gitignore ├── 2dgs ├── LICENSE ├── README.md ├── example.mtlx ├── plane.obj ├── preview.png ├── preview2.png └── splat2d.mtlx ├── README.md ├── coffeemaker ├── LICENSE ├── README.md ├── coffeemaker.usdc └── preview.png ├── cornell-box ├── LICENSE ├── README.md ├── display-color │ └── cornell-box.usda ├── mdl │ ├── cornell-box.mdl │ └── cornell-box.usda ├── mtlx-ref │ ├── cornell-box.mtlx │ └── cornell-box.usda ├── mtlx-usdshade │ └── cornell-box.usda ├── preview.png └── usdpreviewsurface │ └── cornell-box.usda ├── interior-map ├── LICENSE ├── README.md ├── cornell.png ├── example1.mtlx ├── example2.mtlx ├── interior_map.mtlx ├── plane.obj ├── preview.png └── room.png ├── lcd ├── LICENSE ├── README.md ├── example.mtlx ├── lcd.mtlx ├── pattern1.png ├── pattern2.png ├── pattern3.png ├── plane.obj ├── preview.png └── sunflower.jpg ├── materials-variants-shoe ├── LICENSE ├── MaterialsVariantsShoe.usdc ├── README.md ├── autumn_field_puresky_1k.exr ├── diffuseBeach.jpg ├── diffuseMidnight.jpg ├── diffuseStreet.jpg ├── normal.jpg ├── occlusionRougnessMetalness.jpg └── preview.png ├── teapot ├── LICENSE ├── README.md ├── preview.png ├── teapot.mtlx └── teapot.usdc └── veach-ajar ├── LICENSE ├── README.md ├── preview.png ├── textures ├── Good_Textures_005844.jpg ├── cherry-wood-texture.jpg └── landscape-with-a-lake.jpg ├── veach-ajar.mtlx └── veach-ajar.usdc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/.gitignore -------------------------------------------------------------------------------- /2dgs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/2dgs/LICENSE -------------------------------------------------------------------------------- /2dgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/2dgs/README.md -------------------------------------------------------------------------------- /2dgs/example.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/2dgs/example.mtlx -------------------------------------------------------------------------------- /2dgs/plane.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/2dgs/plane.obj -------------------------------------------------------------------------------- /2dgs/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/2dgs/preview.png -------------------------------------------------------------------------------- /2dgs/preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/2dgs/preview2.png -------------------------------------------------------------------------------- /2dgs/splat2d.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/2dgs/splat2d.mtlx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/README.md -------------------------------------------------------------------------------- /coffeemaker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/coffeemaker/LICENSE -------------------------------------------------------------------------------- /coffeemaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/coffeemaker/README.md -------------------------------------------------------------------------------- /coffeemaker/coffeemaker.usdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/coffeemaker/coffeemaker.usdc -------------------------------------------------------------------------------- /coffeemaker/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/coffeemaker/preview.png -------------------------------------------------------------------------------- /cornell-box/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/LICENSE -------------------------------------------------------------------------------- /cornell-box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/README.md -------------------------------------------------------------------------------- /cornell-box/display-color/cornell-box.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/display-color/cornell-box.usda -------------------------------------------------------------------------------- /cornell-box/mdl/cornell-box.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/mdl/cornell-box.mdl -------------------------------------------------------------------------------- /cornell-box/mdl/cornell-box.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/mdl/cornell-box.usda -------------------------------------------------------------------------------- /cornell-box/mtlx-ref/cornell-box.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/mtlx-ref/cornell-box.mtlx -------------------------------------------------------------------------------- /cornell-box/mtlx-ref/cornell-box.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/mtlx-ref/cornell-box.usda -------------------------------------------------------------------------------- /cornell-box/mtlx-usdshade/cornell-box.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/mtlx-usdshade/cornell-box.usda -------------------------------------------------------------------------------- /cornell-box/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/preview.png -------------------------------------------------------------------------------- /cornell-box/usdpreviewsurface/cornell-box.usda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/cornell-box/usdpreviewsurface/cornell-box.usda -------------------------------------------------------------------------------- /interior-map/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/LICENSE -------------------------------------------------------------------------------- /interior-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/README.md -------------------------------------------------------------------------------- /interior-map/cornell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/cornell.png -------------------------------------------------------------------------------- /interior-map/example1.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/example1.mtlx -------------------------------------------------------------------------------- /interior-map/example2.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/example2.mtlx -------------------------------------------------------------------------------- /interior-map/interior_map.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/interior_map.mtlx -------------------------------------------------------------------------------- /interior-map/plane.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/plane.obj -------------------------------------------------------------------------------- /interior-map/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/preview.png -------------------------------------------------------------------------------- /interior-map/room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/interior-map/room.png -------------------------------------------------------------------------------- /lcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/LICENSE -------------------------------------------------------------------------------- /lcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/README.md -------------------------------------------------------------------------------- /lcd/example.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/example.mtlx -------------------------------------------------------------------------------- /lcd/lcd.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/lcd.mtlx -------------------------------------------------------------------------------- /lcd/pattern1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/pattern1.png -------------------------------------------------------------------------------- /lcd/pattern2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/pattern2.png -------------------------------------------------------------------------------- /lcd/pattern3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/pattern3.png -------------------------------------------------------------------------------- /lcd/plane.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/plane.obj -------------------------------------------------------------------------------- /lcd/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/preview.png -------------------------------------------------------------------------------- /lcd/sunflower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/lcd/sunflower.jpg -------------------------------------------------------------------------------- /materials-variants-shoe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/LICENSE -------------------------------------------------------------------------------- /materials-variants-shoe/MaterialsVariantsShoe.usdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/MaterialsVariantsShoe.usdc -------------------------------------------------------------------------------- /materials-variants-shoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/README.md -------------------------------------------------------------------------------- /materials-variants-shoe/autumn_field_puresky_1k.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/autumn_field_puresky_1k.exr -------------------------------------------------------------------------------- /materials-variants-shoe/diffuseBeach.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/diffuseBeach.jpg -------------------------------------------------------------------------------- /materials-variants-shoe/diffuseMidnight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/diffuseMidnight.jpg -------------------------------------------------------------------------------- /materials-variants-shoe/diffuseStreet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/diffuseStreet.jpg -------------------------------------------------------------------------------- /materials-variants-shoe/normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/normal.jpg -------------------------------------------------------------------------------- /materials-variants-shoe/occlusionRougnessMetalness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/occlusionRougnessMetalness.jpg -------------------------------------------------------------------------------- /materials-variants-shoe/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/materials-variants-shoe/preview.png -------------------------------------------------------------------------------- /teapot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/teapot/LICENSE -------------------------------------------------------------------------------- /teapot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/teapot/README.md -------------------------------------------------------------------------------- /teapot/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/teapot/preview.png -------------------------------------------------------------------------------- /teapot/teapot.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/teapot/teapot.mtlx -------------------------------------------------------------------------------- /teapot/teapot.usdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/teapot/teapot.usdc -------------------------------------------------------------------------------- /veach-ajar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/LICENSE -------------------------------------------------------------------------------- /veach-ajar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/README.md -------------------------------------------------------------------------------- /veach-ajar/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/preview.png -------------------------------------------------------------------------------- /veach-ajar/textures/Good_Textures_005844.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/textures/Good_Textures_005844.jpg -------------------------------------------------------------------------------- /veach-ajar/textures/cherry-wood-texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/textures/cherry-wood-texture.jpg -------------------------------------------------------------------------------- /veach-ajar/textures/landscape-with-a-lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/textures/landscape-with-a-lake.jpg -------------------------------------------------------------------------------- /veach-ajar/veach-ajar.mtlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/veach-ajar.mtlx -------------------------------------------------------------------------------- /veach-ajar/veach-ajar.usdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pablode/cg-assets/HEAD/veach-ajar/veach-ajar.usdc --------------------------------------------------------------------------------