diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-04-01 08:37:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 08:37:53 +0200 |
commit | 0e8caf1a4e238b9bdd59da9121d3947d9b9062b7 (patch) | |
tree | 23a9d0c5337692fa1825d401f821023b39f43904 /scene | |
parent | 340ad7d74869e71d88f6ce7dcb1cf20e924faed2 (diff) | |
parent | 60dfe76e1f8a13fa7cfd1919a6fa74d41fdb4f58 (diff) |
Merge pull request #59769 from fire-forge/fastnoise-group-name
Fix group names in FastNoise and Gradient
Diffstat (limited to 'scene')
-rw-r--r-- | scene/resources/gradient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/gradient.cpp b/scene/resources/gradient.cpp index 79ac1b57c3..caaa3d8628 100644 --- a/scene/resources/gradient.cpp +++ b/scene/resources/gradient.cpp @@ -71,7 +71,7 @@ void Gradient::_bind_methods() { ADD_PROPERTY(PropertyInfo(Variant::INT, "interpolation_mode", PROPERTY_HINT_ENUM, "Linear,Constant,Cubic"), "set_interpolation_mode", "get_interpolation_mode"); - ADD_GROUP("Raw data", ""); + ADD_GROUP("Raw Data", ""); ADD_PROPERTY(PropertyInfo(Variant::PACKED_FLOAT32_ARRAY, "offsets"), "set_offsets", "get_offsets"); ADD_PROPERTY(PropertyInfo(Variant::PACKED_COLOR_ARRAY, "colors"), "set_colors", "get_colors"); |