├── .gitignore ├── LICENSE.md ├── README.md ├── Screen Shot 2019-05-14 at 5.32.15 PM.png ├── Screen Shot 2019-05-14 at 5.32.15 PM.png.import ├── icon.png ├── icon.png.import ├── material_tester ├── art │ ├── GodotBall.blend │ ├── GodotBall.dae │ ├── GodotBall.dae.import │ ├── environment │ │ ├── experiment.hdr │ │ ├── experiment.hdr.import │ │ ├── lobby.hdr │ │ ├── lobby.hdr.import │ │ ├── mat_capture_env.tres │ │ ├── night.hdr │ │ ├── night.hdr.import │ │ ├── park.hdr │ │ ├── park.hdr.import │ │ ├── schelde.hdr │ │ └── schelde.hdr.import │ ├── godot_ball.mesh │ ├── material_library │ │ ├── Clay.exr │ │ ├── Clay.exr.import │ │ ├── Jade.exr │ │ ├── Jade.exr.import │ │ ├── amber.exr │ │ ├── amber.exr.import │ │ ├── dramatic.exr │ │ ├── dramatic.exr.import │ │ ├── material_capture.shader │ │ ├── material_capture.tres │ │ ├── mud.exr │ │ ├── mud.exr.import │ │ ├── resin.exr │ │ ├── resin.exr.import │ │ ├── skintone.exr │ │ ├── skintone.exr.import │ │ ├── toonish.exr │ │ ├── toonish.exr.import │ │ ├── white_lightbulb.exr │ │ └── white_lightbulb.exr.import │ ├── pbr_bed.dae │ └── pbr_bed.dae.import ├── core │ └── tester.gd ├── icon.png.import ├── marble_albedo.png.import └── scene │ ├── test_bed.scn │ └── tester.tscn ├── material_testers_license.md └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/README.md -------------------------------------------------------------------------------- /Screen Shot 2019-05-14 at 5.32.15 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/Screen Shot 2019-05-14 at 5.32.15 PM.png -------------------------------------------------------------------------------- /Screen Shot 2019-05-14 at 5.32.15 PM.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/Screen Shot 2019-05-14 at 5.32.15 PM.png.import -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/icon.png.import -------------------------------------------------------------------------------- /material_tester/art/GodotBall.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/GodotBall.blend -------------------------------------------------------------------------------- /material_tester/art/GodotBall.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/GodotBall.dae -------------------------------------------------------------------------------- /material_tester/art/GodotBall.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/GodotBall.dae.import -------------------------------------------------------------------------------- /material_tester/art/environment/experiment.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/experiment.hdr -------------------------------------------------------------------------------- /material_tester/art/environment/experiment.hdr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/experiment.hdr.import -------------------------------------------------------------------------------- /material_tester/art/environment/lobby.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/lobby.hdr -------------------------------------------------------------------------------- /material_tester/art/environment/lobby.hdr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/lobby.hdr.import -------------------------------------------------------------------------------- /material_tester/art/environment/mat_capture_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/mat_capture_env.tres -------------------------------------------------------------------------------- /material_tester/art/environment/night.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/night.hdr -------------------------------------------------------------------------------- /material_tester/art/environment/night.hdr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/night.hdr.import -------------------------------------------------------------------------------- /material_tester/art/environment/park.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/park.hdr -------------------------------------------------------------------------------- /material_tester/art/environment/park.hdr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/park.hdr.import -------------------------------------------------------------------------------- /material_tester/art/environment/schelde.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/schelde.hdr -------------------------------------------------------------------------------- /material_tester/art/environment/schelde.hdr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/environment/schelde.hdr.import -------------------------------------------------------------------------------- /material_tester/art/godot_ball.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/godot_ball.mesh -------------------------------------------------------------------------------- /material_tester/art/material_library/Clay.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/Clay.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/Clay.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/Clay.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/Jade.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/Jade.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/Jade.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/Jade.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/amber.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/amber.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/amber.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/amber.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/dramatic.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/dramatic.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/dramatic.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/dramatic.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/material_capture.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/material_capture.shader -------------------------------------------------------------------------------- /material_tester/art/material_library/material_capture.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/material_capture.tres -------------------------------------------------------------------------------- /material_tester/art/material_library/mud.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/mud.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/mud.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/mud.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/resin.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/resin.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/resin.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/resin.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/skintone.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/skintone.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/skintone.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/skintone.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/toonish.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/toonish.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/toonish.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/toonish.exr.import -------------------------------------------------------------------------------- /material_tester/art/material_library/white_lightbulb.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/white_lightbulb.exr -------------------------------------------------------------------------------- /material_tester/art/material_library/white_lightbulb.exr.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/material_library/white_lightbulb.exr.import -------------------------------------------------------------------------------- /material_tester/art/pbr_bed.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/pbr_bed.dae -------------------------------------------------------------------------------- /material_tester/art/pbr_bed.dae.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/art/pbr_bed.dae.import -------------------------------------------------------------------------------- /material_tester/core/tester.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/core/tester.gd -------------------------------------------------------------------------------- /material_tester/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/icon.png.import -------------------------------------------------------------------------------- /material_tester/marble_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/marble_albedo.png.import -------------------------------------------------------------------------------- /material_tester/scene/test_bed.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/scene/test_bed.scn -------------------------------------------------------------------------------- /material_tester/scene/tester.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_tester/scene/tester.tscn -------------------------------------------------------------------------------- /material_testers_license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/material_testers_license.md -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godot-extended-libraries/godot-mat-cap/HEAD/project.godot --------------------------------------------------------------------------------