diff --git a/.gitattributes b/.gitattributes index 8ad74f7..30214b9 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,7 @@ # Normalize EOL for all files that Git considers text files. * text=auto eol=lf + +# Only include the addons folder when downloading from the Asset Library. +/** export-ignore +/addons !export-ignore +/addons/** !export-ignore diff --git a/README.md b/README.md index 00decbd..38ada45 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ ___

Noise

Gradient Noise node

-Generates a gradient, or Perlin, noise based on input UV. The resulting output values will be between -1 and 1. +Generates a gradient, or Perlin noise based on input UV. The resulting output values will be between -1 and 1.
**Inputs** diff --git a/addons/LICENSE b/addons/ShaderLib/LICENSE similarity index 100% rename from addons/LICENSE rename to addons/ShaderLib/LICENSE diff --git a/addons/ShaderLib/Procedural/Noise/GradientNoise.gd b/addons/ShaderLib/Procedural/Noise/GradientNoise.gd index 76dc34b..7435028 100644 --- a/addons/ShaderLib/Procedural/Noise/GradientNoise.gd +++ b/addons/ShaderLib/Procedural/Noise/GradientNoise.gd @@ -13,7 +13,7 @@ func _get_category() -> String: return "Procedural/Noise" func _get_description() -> String: - return "Generates a gradient, or Perlin, noise based on input UV." + return "Generates a gradient, or Perlin noise based on input UV." func _get_return_icon_type() -> VisualShaderNode.PortType: return PORT_TYPE_SCALAR