├── .gitignore ├── LICENSE ├── SConstruct ├── appleseed-additional-shaders ├── as_sbs_pbrmaterial.osl └── as_sbs_pbrmaterial.oso ├── appleseed_python.py ├── arnold_python.py ├── data ├── bark.sbs ├── dependencies │ ├── EnvironmentToolkit.sbs │ ├── opus_pattern3.png │ ├── pbr_render.sbs │ ├── pbr_render.sbsar │ ├── rust.sbs │ └── substance_logo.png ├── opus.sbs └── wood_planks_age_02.sbs ├── readme.md └── scene_template.appleseed /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/LICENSE -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/SConstruct -------------------------------------------------------------------------------- /appleseed-additional-shaders/as_sbs_pbrmaterial.osl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/appleseed-additional-shaders/as_sbs_pbrmaterial.osl -------------------------------------------------------------------------------- /appleseed-additional-shaders/as_sbs_pbrmaterial.oso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/appleseed-additional-shaders/as_sbs_pbrmaterial.oso -------------------------------------------------------------------------------- /appleseed_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/appleseed_python.py -------------------------------------------------------------------------------- /arnold_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/arnold_python.py -------------------------------------------------------------------------------- /data/bark.sbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/bark.sbs -------------------------------------------------------------------------------- /data/dependencies/EnvironmentToolkit.sbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/dependencies/EnvironmentToolkit.sbs -------------------------------------------------------------------------------- /data/dependencies/opus_pattern3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/dependencies/opus_pattern3.png -------------------------------------------------------------------------------- /data/dependencies/pbr_render.sbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/dependencies/pbr_render.sbs -------------------------------------------------------------------------------- /data/dependencies/pbr_render.sbsar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/dependencies/pbr_render.sbsar -------------------------------------------------------------------------------- /data/dependencies/rust.sbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/dependencies/rust.sbs -------------------------------------------------------------------------------- /data/dependencies/substance_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/dependencies/substance_logo.png -------------------------------------------------------------------------------- /data/opus.sbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/opus.sbs -------------------------------------------------------------------------------- /data/wood_planks_age_02.sbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/data/wood_planks_age_02.sbs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/readme.md -------------------------------------------------------------------------------- /scene_template.appleseed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllegorithmicSAS/sat-scons/HEAD/scene_template.appleseed --------------------------------------------------------------------------------