diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-01-05 12:01:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-05 12:01:20 +0100 |
commit | 8a1c37dc2212da7c403b41c37875587083e93c10 (patch) | |
tree | b1539c3ce351881eff906aa5b8950377b0601d84 /editor/plugins | |
parent | f4d8733777cc358a6a266391166961ba61f54bf4 (diff) | |
parent | 88924bbbc6173581057eac53eb6daa4a3d2b5822 (diff) |
Merge pull request #44893 from Chaosus/shader_reference
[4.0] Fix shader editor documentation link
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp index c05f55a115..d6a816f606 100644 --- a/editor/plugins/shader_editor_plugin.cpp +++ b/editor/plugins/shader_editor_plugin.cpp @@ -339,7 +339,7 @@ void ShaderEditor::_menu_option(int p_option) { shader_editor->remove_all_bookmarks(); } break; case HELP_DOCS: { - OS::get_singleton()->shell_open("https://docs.godotengine.org/en/stable/tutorials/shading/shading_reference/index.html"); + OS::get_singleton()->shell_open("https://docs.godotengine.org/en/latest/tutorials/shaders/shader_reference/index.html"); } break; } if (p_option != SEARCH_FIND && p_option != SEARCH_REPLACE && p_option != SEARCH_GOTO_LINE) { |