mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 04:33:29 +00:00
Fix group name in FastNoise and Gradient
This commit is contained in:
parent
340ad7d748
commit
60dfe76e1f
@ -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);
|
||||
|
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user