├── .gitignore ├── README.md ├── SignPost.jpg ├── StylizedWinter.blend ├── StylizedWinter.blend1 └── gifs ├── Colors.gif ├── RoadSide.gif ├── WinterScene.gif ├── establishingShots.gif ├── proceduralShader.gif └── proceduralWorkflow.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Get latest from httpsgithub.comgithubgitignoreblobmasterUnity.gitignore 4 | 5 | # 6 | documentation -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Procedural Stylized Scene Generator With Geometry Node in Blender 3D 2 | ================= 3 | 4 | ![screenshot](gifs/establishingShots.gif) 5 | ![screenshot](gifs/WinterScene.gif) 6 | 7 | This repo contains Geometry nodes generating the images shown above. Both scenes are viewable downloadable on my sketchfab. You will find the [Autumn](https://skfb.ly/oCNu9) scene here and the [Winter](https://skfb.ly/oCBKI) here. 8 | 9 | I have covered the workflows and concepts in this blog post here: https://shahriyarshahrabi.medium.com/blender-geometry-nodes-create-stylized-scenes-e336967c7f84 10 | 11 | To get the Winter scene, switch to the Master branch. The main branch only contains the Autumn demo scene. This was made and tested on Windows, Blender 3.4.1 12 | 13 | --- 14 | 15 | Everything is done procedurally in the scene. That means you can easily model in the surfaces you want as top of the hill and the rest is taken care of by the geometry node: 16 | 17 | ![screenshot](gifs/proceduralWorkflow.gif) 18 | 19 | There are various procedural systems at play. Such as placement of the house, the roads, the rivers, the smoke and the fences. Here is an example of the fences: 20 | 21 | ![screenshot](gifs/RoadSide.gif) 22 | 23 | Since the colors are also fully procedural, and all controled through a few key colors positioned in a node group, you can easily look dev the whole scene. 24 | 25 | ![screenshot](gifs/Colors.gif) 26 | ![screenshot](gifs/proceduralShader.gif) 27 | 28 | -------------------------------------------------------------------------------- /SignPost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/SignPost.jpg -------------------------------------------------------------------------------- /StylizedWinter.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/StylizedWinter.blend -------------------------------------------------------------------------------- /StylizedWinter.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/StylizedWinter.blend1 -------------------------------------------------------------------------------- /gifs/Colors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/gifs/Colors.gif -------------------------------------------------------------------------------- /gifs/RoadSide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/gifs/RoadSide.gif -------------------------------------------------------------------------------- /gifs/WinterScene.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/gifs/WinterScene.gif -------------------------------------------------------------------------------- /gifs/establishingShots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/gifs/establishingShots.gif -------------------------------------------------------------------------------- /gifs/proceduralShader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/gifs/proceduralShader.gif -------------------------------------------------------------------------------- /gifs/proceduralWorkflow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IRCSS/GeometryNodes-Stylized-Scene-Generator/c0e8eae4b0ae51cbdfb902436c1fd519b94b6df5/gifs/proceduralWorkflow.gif --------------------------------------------------------------------------------