diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-07-09 08:31:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 08:31:20 +0200 |
commit | 24c462b974ed45be85a7026960482dfcc7b54010 (patch) | |
tree | f3fdc1642423d1f4b0e01eed327315e253e6eee1 /scene/3d/world_environment.cpp | |
parent | 2fd902a08fdce6a1dc7abd2ea2d9a0c13cb21d76 (diff) | |
parent | ff7184c5cb501cb1674e2547fc31bbb9975cc0f2 (diff) |
Merge pull request #30443 from Calinou/improve-node-configuration-warnings
Improve the node configuration warning display
Diffstat (limited to 'scene/3d/world_environment.cpp')
-rw-r--r-- | scene/3d/world_environment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/world_environment.cpp b/scene/3d/world_environment.cpp index 3cd43cbf5b..8d46b4161d 100644 --- a/scene/3d/world_environment.cpp +++ b/scene/3d/world_environment.cpp @@ -80,7 +80,7 @@ Ref<Environment> WorldEnvironment::get_environment() const { String WorldEnvironment::get_configuration_warning() const { if (!environment.is_valid()) { - return TTR("WorldEnvironment needs an Environment resource."); + return TTR("WorldEnvironment requires its \"Environment\" property to contain an Environment to have a visible effect."); } if (/*!is_visible_in_tree() ||*/ !is_inside_tree()) |