diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-05-25 19:59:17 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2019-05-25 19:59:17 +0200 |
commit | 33fd5538d08db975f8e933755fc49c7c3504ee56 (patch) | |
tree | a1454a84ec2f508a60a53beb513e567fd9f9f42e /scene/3d/particles.cpp | |
parent | 5c1cce6e3f7d9679152762506ffafcb29e3f72c9 (diff) |
Tweak the particle animation node configuration warning message
Diffstat (limited to 'scene/3d/particles.cpp')
-rw-r--r-- | scene/3d/particles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/particles.cpp b/scene/3d/particles.cpp index 57ab01f7be..156560f802 100644 --- a/scene/3d/particles.cpp +++ b/scene/3d/particles.cpp @@ -268,7 +268,7 @@ String Particles::get_configuration_warning() const { process->get_param_texture(ParticlesMaterial::PARAM_ANIM_SPEED).is_valid() || process->get_param_texture(ParticlesMaterial::PARAM_ANIM_OFFSET).is_valid())) { if (warnings != String()) warnings += "\n"; - warnings += "- " + TTR("Particles animation requires the usage of a SpatialMaterial with \"Billboard Particles\" enabled."); + warnings += "- " + TTR("Particles animation requires the usage of a SpatialMaterial whose Billboard Mode is set to \"Particle Billboard\"."); } } |