Skip to content

Commit

Permalink
Fix group name in FastNoise and Gradient
Browse files Browse the repository at this point in the history
  • Loading branch information
fire-forge authored and gaudecker committed Apr 2, 2022
1 parent feca371 commit 1338036
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/noise/fastnoise_lite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ void FastNoiseLite::_bind_methods() {

// Domain warp.

ADD_GROUP("Domain warp", "domain_warp_");
ADD_GROUP("Domain Warp", "domain_warp_");

ClassDB::bind_method(D_METHOD("set_domain_warp_enabled", "domain_warp_enabled"), &FastNoiseLite::set_domain_warp_enabled);
ClassDB::bind_method(D_METHOD("is_domain_warp_enabled"), &FastNoiseLite::is_domain_warp_enabled);
Expand Down
2 changes: 1 addition & 1 deletion scene/resources/gradient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit 1338036

Please sign in to comment.