From 106cda6774357e2d86c27cd77d830bbdc2b5c6d3 Mon Sep 17 00:00:00 2001 From: Digvijaysinh Gohil Date: Sun, 15 Oct 2023 00:03:42 +0530 Subject: [PATCH] Documentation typo and files refactor --- .gitattributes | 5 +++++ README.md | 2 +- addons/{ => ShaderLib}/LICENSE | 0 addons/ShaderLib/Procedural/Noise/GradientNoise.gd | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) rename addons/{ => ShaderLib}/LICENSE (100%) 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