Home

Awesome

Shell Fur Add-on for Godot Engine

Shell Fur Add-on for Godot v0.1.0 Released - Feature Overview

Add-on that adds a fur node to Godot 3.4. Demo project available here.

Discord Server

Patreon

Installation

ShellFur is available on the Godot Asset Library, so the easiest way to install it into your project is directly inside Godot. Simply go to the AssetLib screen and search for "Fur" and the add-on should appear. Select it and press Download -> Install.

Alternatively you can press the green Code button at the top of this page and select Download ZIP, unzip the file and place the "shell_fur" folder in your project like so "addons/shell_fur*.

Once the files are in your project, you need to activate the add-on from the Project -> Project Settings... -> Plugins menu.

Purpose

I was inspired by games like Shadow of the Colossus and Red Dead Redemption 2 which use this technique, to try and make my own implementation in Godot.

Warning

This tool is not meant for grass and foliage. This method is way too performance expensive on fillrate when the fur takes up large parts of the screen for it to be used for effects like that. Use the effect for hero props or characters.

Usage

Select any MeshInstance node and add the ShellFur node as a child beneath it.

72mqYGVOST

Parameters

The parameters for the fur is split into five sections.

Main

Material

The material subsection is dynamically generated based on the content of the shader in use. The Regular and Mobile shader have the same shader parameters, but if you choose to customize the shader any parameters you add will be displayed here. See writing custom shaders for details.

Physics

Spring physics and wind in action

OjUGl0gCwP

Blendshape Styling

Blendshape styling being applied

JKYwI1ItFD

Lod

API

If you want to communicate with the fur script with your own scripts you can call all the public setters and getters on the tool, in addition to the setters for the parameters seen in the inspector, these three functions may be useful.

FunctionReturn TypeDescription
get_current_LOD()intReturns the current LOD level
get_shader_param(param : String)variantReturns the given shader parameter
set_shader_param(param : String, value)voidSets the given shader parameter - DO NOT SET INTERNAL PARAMS (prefix "i_")

TIPS

Using your own fur patterns

If you want to use your own pattern for the fur, you need use a texture with noise in the R channel used for the fur strand cutoff. You can leave G, B and A channel at full value and the shader will work, but you will not have any options for random length, density, thickness and growth. To have that you'll need to have random values corresponding to the cells of each strand in those channels as seen below.

Breakdown of Very Fine texture - Left to right: Combined pattern texture, R channel, G channel, B channel and A channel. image

The easiest way to do this is to use this file which shows examples of how I generate fur textures. It is made in the free texture generation program Material Maker.

Be sure to enable Filter, Mipmaps and Anisotropic and set Srgb to Disable when importing your own pattern textures.

Writing Custom Shaders

When writing custom shaders for the tool there are a few things to keep in mind.

The tool uses certain uniforms that should not be customized as that will break the tool. These uniforms are prefixed with "i_" and are:

Uniform nameDescription
i_layersUsed by the shader to correctly spread the layers
i_pattern_textureThe pattern texture set by the selector in the main section
i_pattern_uv_scaleUV scale of the above texture
i_wind_strengthControls for the wind system
i_wind_speedControls for the wind system
i_wind_scaleControls for the wind system
i_wind_angleControls for the wind system
i_normal_biasUsed to blend in the normal at the base when using blendshape
i_LODUsed by the LOD system
i_physics_pos_offsetUsed by the physics system to pass spring data
i_physics_rot_offsetUsed by the physics system to pass spring data
i_blend_shape_multiplierUsed when setting up the extrusion vectors for the shells
i_fur_contractUsed by the LOD system to pull the fur into the mesh

Uniforms that do not start with "i_" will be parsed by the ShellFur's material inspector so they can easily be used in the tool. If the uniforms start with any of the below prefixes they will automatically be sorted into subcategories in the material section.

Prefix nameSubcategory name
albedo_Albedo
shape_Shape
custom_Custom

mat4 uniforms containing "color" in their name will be displayed as a gradient field with two color selectors.

Mobile Support - experimental

The shader works with GLES2, however rotational physics and Custom Physics Pivot does not work in GLES2.

I suggest using the Mobile shader when targeting mobile, but if you have a newer device, the Regular shader might work as well.

In my testing there appeared to be a bug where skinned meshes with blendshapes don't render on Android. https://github.com/godotengine/godot/issues/43217. So if you want to use blendshape styling, you might need to work around this by having a separate mesh where you have removed the blendshape, that is getting rendered. I had to do this in my current android demo scene, so have a look at the demo project to see how I did it there.

No testing has been done on iOS devices.

Current Limitations

Acknowledgements

Contributing

If you want to contribute to the project or just work on your own version, clone the repository and add WAT - Unit Testing Framework into the project as I don't include it in this repository, but I've started using it for running automated tests. I also use Todo Manager and Godot Plugin Refresher when working on the project, so you might want to consider adding them as well. If you want to add something in, simply do a pull request and I'll have a look at it.

License