Uploaded March 2019 | Updated September 2026, 2 weeks ago
Here is the preview for the next Tutorial "Vfx/Sci Fi Robot Eyes" in Blender 2.8.
In the next video we will be using Blender 2.8 to create this VFX shot.
Be sure to check out our blog for latest posts and more
darkfallblender.blogspot.com
Here is the preview for the next Tutorial "Vfx/Sci Fi Robot Eyes" in Blender 2.8.
In the next video we will be using Blender 2.8 to create this VFX shot.
Be sure to check out our blog for latest posts and more
darkfallblender.blogspot.com
![Blender Python Tutorial : Finishing the Object Adder Add-on [learn python for beginners]
In this Blender Python Tutorial, we will be continuing with our Object Adder (add mesh) Add-on that we created in the last video.
Looking to learn Python for beginners? You are in the right place. Be sure to check out the Scripting Playlist!.
If you want to download this Script, be sure to check the link in our blog!.
First we will add the bl_info, so we can install our add-on (instead of needing to press Runs Script all the time).
Then we look at adding two new panels and then adding the Panels inside of our Main Panel (which is super simple).
We then add some Functions to our Newly added Panels. We can add pretty much anything we want and I suggest adding the most common functions that you use all the time.
You can take certain functions and operations from various different Sections of Blender, and then add them to your Add-on (You can then work in bigger workspace without the need to jump from one window to the next).
Of course this Add-on is super simple and we can always add, change and improve this add-on but I wanted to create something easy to follow and I hope I have managed to inspire you to take this further and start to make awesome add-ons!..
In the Next Tutorial, we will be creating an Add-on thats a little more advanced but with the knowledge we have learned over the last two videos, it should be easier to pick up.
Again, I hope you found this Blender Python Tutorial helpful! be sure to let us know what you think of this series or if you want more videos like this?
Links -
Blogger: https://darkfallblender.blogspot.com/2020/01/scripting-continued-blender-python-bpy.html
Facebook Group: https://www.facebook.com/groups/darkfallblender/
Twitter: https://twitter.com/DarkfallStudios
Download Blender: https://www.blender.org/download/ Blender Python Tutorial : Finishing the Object Adder Add-on [learn python for beginners]](https://i.ytimg.com/vi/hF-cyH8Z7WQ/mqdefault.jpg)

![Blender Python Tutorial : Class Naming Convention [learn python for beginners]
Blender 2.90 Tutorial, learn python scripting (for beginners)
In this video we will take a quick look at how to properly name our classes.
Looking to learn Python for beginners? You are in the right place. Be sure to check out the Scripting Playlist!.
In past videos I may have (incorrectly) told you to name your classes in a way that may kick up an error message. We should follow the Correct Naming Convention in order to keep our scripts tidy and separate.. If we have Classes that share the same name we could cause unexpected results.
So that being said, I wanted to quickly show you how to better name your Classes. If you want more information you can check out our blog post here: https://darkfallblender.blogspot.com/2020/07/blender-python-tutorial-class-naming.html
I hope this quick Blender Python Tutorial helps and as always thanks for watching!. Blender Python Tutorial : Class Naming Convention [learn python for beginners]](https://i.ytimg.com/vi/i12oOBI3E28/mqdefault.jpg)

![Blender Tutorial: Quick Smoke Tool - Smokey (Wispy) Text Effect [Smoke Simulation]
In this Video we will be looking at the Quick Smoke Tool in Blender to achieve a Wispy smoke effect.
There are so many different settings to play around with, you can create many different results. If you make something cool with the smoke sim be sure to post a video or link in our facebook group.
I rendered this out with a small amount of samples and I use denoise (which did an okay job) but if this was for your own project, I would increase the samples to get a better result.
If you want to check out the settings I used for this Final shot I will post the Info in the FB group.
I hope you found this video helpful and as always, thanks for watching!.
Facebook Group - https://www.facebook.com/groups/147625555899175/
Dafont: https://www.dafont.com/ Blender Tutorial: Quick Smoke Tool - Smokey (Wispy) Text Effect [Smoke Simulation]](https://i.ytimg.com/vi/in4890g2-oo/mqdefault.jpg)


![Speed Modelling Sci fi Hallway
Its been a while since I did a speed modelling video and since I wanted to create a quick scene for the next tutorial I thought I would share with you guys this video.
Song: Ship Wrek - Pain (feat. Mia Vaile) [XimerTracks]
Music provided by NoCopyrightSounds.
Video Link: https://www.youtube.com/watch?v=NK6fJWDJC1g
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
XIMER - Bringing unknown to known
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Song: Foria - Break Away [XimerTracks]
Music provided by NoCopyrightSounds.
Video Link: https://www.youtube.com/watch?v=f1wSTVV7v34
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
XIMER - Bringing unknown to known
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Song: JPB - Up & Away [NCS Release]
Music provided by NoCopyrightSounds.
Video Link: https://youtu.be/rbDBkehZi_4
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
XIMER - Bringing unknown to known
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
Song: T & Sugah - Cast Away ft. Ayve [XimerTracks]
Music provided by NoCopyrightSounds.
Video Link: https://www.youtube.com/watch?v=G16HaCxmLpU
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
XIMER - Bringing unknown to known
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ Speed Modelling Sci fi Hallway](https://i.ytimg.com/vi/jIdwdSQ5c5M/mqdefault.jpg)
![Blender Python Tutorial : Create Property Group & Enumerator (Panel) [learn python for beginners]
In this Blender Python Tutorial, we will be looking at adding an Enumerator and other Custom Properties onto a Panel. We will also be creating a Property Group which will contain a number of custom Properties we can define.
Looking to learn Python for beginners? You are in the right place. Be sure to check out the Scripting Playlist!.
We will need a couple of things before we can get started. We will need a basic script that contains a Panel, operator and a registration section. You can use Blenders Templates to add a panel and operator.
If you want to follow along you can download the template script or the Finished Script from our blog: https://darkfallblender.blogspot.com/2020/08/blender-python-tutorial-how-to-add.html
I hope you found this Blender Python Tutorial helpful and as always thanks for watching!. Blender Python Tutorial : Create Property Group & Enumerator (Panel) [learn python for beginners]](https://i.ytimg.com/vi/jZt3MO5D1R8/mqdefault.jpg)
![Blender Tutorial: The Sphere [Stylized Sci-fi Planet Hard Surface]
In this video we will be creating a stylized Sci-fi Planet Hard Surface scene. I wanted to create a gloomy/atmospheric surface with a bunch of mountains in the background. Along with some visual interest (in the form of a sphere). Since I used eevee it took less than a second to render each frame (though if you want to use cycles, then feel free to do so!).
If you want to download some free Texture Images you can find lots of amazing content here: https://www.textures.com/search?q=concrete
For those of you who want to download the VFX nodes addon you can visit our blog post here: https://darkfallblender.blogspot.com/p/blog-page_8.html
I hope you enjoyed this video! as always, stay safe and thanks for watching!. Blender Tutorial: The Sphere [Stylized Sci-fi Planet Hard Surface]](https://i.ytimg.com/vi/kKk-twIfKT4/mqdefault.jpg)
![Blender 2.8: VFX Nodes (Version 1.1) [Addon]
Version 1.2 is now available to download here: http://bit.ly/2kB5XYt
In this video we will be looking at Version 1.1 of the Darkfall VFX Nodes Add-on.
In this first Update, I have made a few Minor changes to the UI and the Process. It took far too long before to scroll through the effects to find the one we want, so I have placed each Effect into its own Section.
Each node now has its own color to further make them unique and I have also set the Width of each node (saving you from resizing each time).
When you add in the Effect node (you no longer have to press Shift A, you can click the button and the node will be added), the current nodes in the compositor are no longer deleted.
There are some other small changes to this Face lift of an update but I think they had been needed and were certainly requested.
In this Update, I also added the Vignette Node, which is another common effect for Visual Effects.
I will be continuing to add new effects and also improving the add-on overall.
I hope you find this add-on helpful!
As always, thanks for watching! Blender 2.8: VFX Nodes (Version 1.1) [Addon]](https://i.ytimg.com/vi/klu_9EBVyiE/mqdefault.jpg)