summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-08-02 11:20:50 +0200
committerGitHub <noreply@github.com>2022-08-02 11:20:50 +0200
commit119b2874c39aeb0aff51603fbf00f75b414a1730 (patch)
tree2f40dd38a873405d4b59e22197ca6071607563c5 /scene
parent10359009dce096b434bd47c833982298be17007f (diff)
parentfe2cc6150ec0e76bc8e372721da6f6321fc262de (diff)
Merge pull request #63815 from RPicster/particle_turbulence_default_values
Diffstat (limited to 'scene')
-rw-r--r--scene/resources/particles_material.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/particles_material.cpp b/scene/resources/particles_material.cpp
index 4b2fdbed5b..2b1b7eb154 100644
--- a/scene/resources/particles_material.cpp
+++ b/scene/resources/particles_material.cpp
@@ -1433,7 +1433,7 @@ void ParticlesMaterial::_validate_property(PropertyInfo &property) const {
property.name == "turbulence_influence_max" ||
property.name == "turbulence_initial_displacement_min" ||
property.name == "turbulence_initial_displacement_max") {
- property.usage = PROPERTY_USAGE_NONE;
+ property.usage = PROPERTY_USAGE_NO_EDITOR;
}
}
}