├── .gitignore ├── ISSUES.md ├── LICENSE ├── README.md ├── __init__.py └── media ├── attribute-node-shader.png ├── comparison ├── comparison-stylized-rocks.png └── stylized-rocks-martyna-grek.blend ├── featured-image.png ├── gallery ├── cacti-pot-textures │ ├── albedo.jpg │ ├── metallic.jpg │ ├── normal.jpg │ └── roughness.jpg ├── cacti-pot-thomas-roussette.blend ├── gallery-cacti-pot.png ├── gallery-landscape.png ├── gallery-mech-drone.png ├── landscape.blend ├── mech-drone-textures │ ├── diffuse.jpg │ ├── gloss.jpg │ ├── normal.jpg │ └── specular.jpg └── mech-drone-willy-decarpentrie.blend ├── operator-settings.png └── showcase.blend /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.blend1 3 | builds -------------------------------------------------------------------------------- /ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/ISSUES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/__init__.py -------------------------------------------------------------------------------- /media/attribute-node-shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/attribute-node-shader.png -------------------------------------------------------------------------------- /media/comparison/comparison-stylized-rocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/comparison/comparison-stylized-rocks.png -------------------------------------------------------------------------------- /media/comparison/stylized-rocks-martyna-grek.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/comparison/stylized-rocks-martyna-grek.blend -------------------------------------------------------------------------------- /media/featured-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/featured-image.png -------------------------------------------------------------------------------- /media/gallery/cacti-pot-textures/albedo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/cacti-pot-textures/albedo.jpg -------------------------------------------------------------------------------- /media/gallery/cacti-pot-textures/metallic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/cacti-pot-textures/metallic.jpg -------------------------------------------------------------------------------- /media/gallery/cacti-pot-textures/normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/cacti-pot-textures/normal.jpg -------------------------------------------------------------------------------- /media/gallery/cacti-pot-textures/roughness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/cacti-pot-textures/roughness.jpg -------------------------------------------------------------------------------- /media/gallery/cacti-pot-thomas-roussette.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/cacti-pot-thomas-roussette.blend -------------------------------------------------------------------------------- /media/gallery/gallery-cacti-pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/gallery-cacti-pot.png -------------------------------------------------------------------------------- /media/gallery/gallery-landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/gallery-landscape.png -------------------------------------------------------------------------------- /media/gallery/gallery-mech-drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/gallery-mech-drone.png -------------------------------------------------------------------------------- /media/gallery/landscape.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/landscape.blend -------------------------------------------------------------------------------- /media/gallery/mech-drone-textures/diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/mech-drone-textures/diffuse.jpg -------------------------------------------------------------------------------- /media/gallery/mech-drone-textures/gloss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/mech-drone-textures/gloss.jpg -------------------------------------------------------------------------------- /media/gallery/mech-drone-textures/normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/mech-drone-textures/normal.jpg -------------------------------------------------------------------------------- /media/gallery/mech-drone-textures/specular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/mech-drone-textures/specular.jpg -------------------------------------------------------------------------------- /media/gallery/mech-drone-willy-decarpentrie.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/gallery/mech-drone-willy-decarpentrie.blend -------------------------------------------------------------------------------- /media/operator-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/operator-settings.png -------------------------------------------------------------------------------- /media/showcase.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ForestKatsch/VertexOven/HEAD/media/showcase.blend --------------------------------------------------------------------------------