diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-05 02:52:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 02:52:06 +0200 |
commit | 25915cdd0e8e2baffc4d52692a1c54ad182e2aea (patch) | |
tree | 2cd3651660b5fdfb29a6640fdbc5f2f82760f35c /modules | |
parent | e36f324bdf0ab805e747e281b2d9dfe2487e553f (diff) | |
parent | db22b7ded04e2cf7eac1c9a05d625b8b00e2f003 (diff) |
Merge pull request #59844 from Calinou/rename-shader-param-methods
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/editor/code_completion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/code_completion.cpp b/modules/mono/editor/code_completion.cpp index a1789412f4..7bce6f2c21 100644 --- a/modules/mono/editor/code_completion.cpp +++ b/modules/mono/editor/code_completion.cpp @@ -172,7 +172,7 @@ PackedStringArray get_code_completion(CompletionKind p_kind, const String &p_scr } } break; case CompletionKind::SHADER_PARAMS: { - print_verbose("Shared params completion for C# not implemented."); + print_verbose("Shader uniforms completion for C# is not implemented yet."); } break; case CompletionKind::SIGNALS: { Ref<Script> script = ResourceLoader::load(p_script_file.simplify_path()); |