diff --git a/classes/class_gdnativelibrary.rst b/classes/class_gdnativelibrary.rst index 40d55ce8c..b7cfda080 100644 --- a/classes/class_gdnativelibrary.rst +++ b/classes/class_gdnativelibrary.rst @@ -21,9 +21,9 @@ A GDNative library can implement :ref:`NativeScript`\ s, glo Tutorials --------- -- :doc:`../tutorials/plugins/gdnative/gdnative-c-example` +_ :doc:`../tutorials/scripting/gdnative/gdnative_c_example` -- :doc:`../tutorials/plugins/gdnative/gdnative-cpp-example` +_ :doc:`../tutorials/scripting/gdnative/gdnative_cpp_example` Properties ---------- diff --git a/tutorials/plugins/index.rst b/tutorials/plugins/index.rst index d0080872e..06fb555d7 100644 --- a/tutorials/plugins/index.rst +++ b/tutorials/plugins/index.rst @@ -6,5 +6,4 @@ Plugins :name: toc-tutorials-extending editor/index - gdnative/index running_code_in_the_editor diff --git a/tutorials/plugins/gdnative/files/cpp_example/SConstruct b/tutorials/scripting/gdnative/files/cpp_example/SConstruct similarity index 100% rename from tutorials/plugins/gdnative/files/cpp_example/SConstruct rename to tutorials/scripting/gdnative/files/cpp_example/SConstruct diff --git a/tutorials/plugins/gdnative/gdnative-c-example.rst b/tutorials/scripting/gdnative/gdnative_c_example.rst similarity index 100% rename from tutorials/plugins/gdnative/gdnative-c-example.rst rename to tutorials/scripting/gdnative/gdnative_c_example.rst diff --git a/tutorials/plugins/gdnative/gdnative-cpp-example.rst b/tutorials/scripting/gdnative/gdnative_cpp_example.rst similarity index 100% rename from tutorials/plugins/gdnative/gdnative-cpp-example.rst rename to tutorials/scripting/gdnative/gdnative_cpp_example.rst diff --git a/tutorials/plugins/gdnative/img/add_main_script.gif b/tutorials/scripting/gdnative/img/add_main_script.gif similarity index 100% rename from tutorials/plugins/gdnative/img/add_main_script.gif rename to tutorials/scripting/gdnative/img/add_main_script.gif diff --git a/tutorials/plugins/gdnative/img/c_main_scene_layout.png b/tutorials/scripting/gdnative/img/c_main_scene_layout.png similarity index 100% rename from tutorials/plugins/gdnative/img/c_main_scene_layout.png rename to tutorials/scripting/gdnative/img/c_main_scene_layout.png diff --git a/tutorials/plugins/gdnative/img/c_sample_result.png b/tutorials/scripting/gdnative/img/c_sample_result.png similarity index 100% rename from tutorials/plugins/gdnative/img/c_sample_result.png rename to tutorials/scripting/gdnative/img/c_sample_result.png diff --git a/tutorials/plugins/gdnative/img/connect_button_signal.gif b/tutorials/scripting/gdnative/img/connect_button_signal.gif similarity index 100% rename from tutorials/plugins/gdnative/img/connect_button_signal.gif rename to tutorials/scripting/gdnative/img/connect_button_signal.gif diff --git a/tutorials/plugins/gdnative/img/gdnative_cpp_animated.gif b/tutorials/scripting/gdnative/img/gdnative_cpp_animated.gif similarity index 100% rename from tutorials/plugins/gdnative/img/gdnative_cpp_animated.gif rename to tutorials/scripting/gdnative/img/gdnative_cpp_animated.gif diff --git a/tutorials/plugins/gdnative/img/gdnative_cpp_nodes.png b/tutorials/scripting/gdnative/img/gdnative_cpp_nodes.png similarity index 100% rename from tutorials/plugins/gdnative/img/gdnative_cpp_nodes.png rename to tutorials/scripting/gdnative/img/gdnative_cpp_nodes.png diff --git a/tutorials/plugins/gdnative/img/gdnative_cpp_sprite.png b/tutorials/scripting/gdnative/img/gdnative_cpp_sprite.png similarity index 100% rename from tutorials/plugins/gdnative/img/gdnative_cpp_sprite.png rename to tutorials/scripting/gdnative/img/gdnative_cpp_sprite.png diff --git a/tutorials/plugins/gdnative/img/gdnative_library.png b/tutorials/scripting/gdnative/img/gdnative_library.png similarity index 100% rename from tutorials/plugins/gdnative/img/gdnative_library.png rename to tutorials/scripting/gdnative/img/gdnative_library.png diff --git a/tutorials/plugins/gdnative/img/gdnativelibrary_editor.png b/tutorials/scripting/gdnative/img/gdnativelibrary_editor.png similarity index 100% rename from tutorials/plugins/gdnative/img/gdnativelibrary_editor.png rename to tutorials/scripting/gdnative/img/gdnativelibrary_editor.png diff --git a/tutorials/plugins/gdnative/img/gdnativelibrary_editor_complete.png b/tutorials/scripting/gdnative/img/gdnativelibrary_editor_complete.png similarity index 100% rename from tutorials/plugins/gdnative/img/gdnativelibrary_editor_complete.png rename to tutorials/scripting/gdnative/img/gdnativelibrary_editor_complete.png diff --git a/tutorials/plugins/gdnative/img/gdnativelibrary_resource.png b/tutorials/scripting/gdnative/img/gdnativelibrary_resource.png similarity index 100% rename from tutorials/plugins/gdnative/img/gdnativelibrary_resource.png rename to tutorials/scripting/gdnative/img/gdnativelibrary_resource.png diff --git a/tutorials/plugins/gdnative/img/gdnativelibrary_save.png b/tutorials/scripting/gdnative/img/gdnativelibrary_save.png similarity index 100% rename from tutorials/plugins/gdnative/img/gdnativelibrary_save.png rename to tutorials/scripting/gdnative/img/gdnativelibrary_save.png diff --git a/tutorials/plugins/gdnative/img/nativescript_library.png b/tutorials/scripting/gdnative/img/nativescript_library.png similarity index 100% rename from tutorials/plugins/gdnative/img/nativescript_library.png rename to tutorials/scripting/gdnative/img/nativescript_library.png diff --git a/tutorials/plugins/gdnative/img/nativescript_resource.png b/tutorials/scripting/gdnative/img/nativescript_resource.png similarity index 100% rename from tutorials/plugins/gdnative/img/nativescript_resource.png rename to tutorials/scripting/gdnative/img/nativescript_resource.png diff --git a/tutorials/plugins/gdnative/img/new_resource.gif b/tutorials/scripting/gdnative/img/new_resource.gif similarity index 100% rename from tutorials/plugins/gdnative/img/new_resource.gif rename to tutorials/scripting/gdnative/img/new_resource.gif diff --git a/tutorials/plugins/gdnative/img/save_gdns.gif b/tutorials/scripting/gdnative/img/save_gdns.gif similarity index 100% rename from tutorials/plugins/gdnative/img/save_gdns.gif rename to tutorials/scripting/gdnative/img/save_gdns.gif diff --git a/tutorials/plugins/gdnative/index.rst b/tutorials/scripting/gdnative/index.rst similarity index 68% rename from tutorials/plugins/gdnative/index.rst rename to tutorials/scripting/gdnative/index.rst index 2c6a2bc58..60a960cef 100644 --- a/tutorials/plugins/gdnative/index.rst +++ b/tutorials/scripting/gdnative/index.rst @@ -6,5 +6,5 @@ GDNative :name: toc-tutorials-gdnative what_is_gdnative - gdnative-c-example - gdnative-cpp-example + gdnative_c_example + gdnative_cpp_example diff --git a/tutorials/plugins/gdnative/what_is_gdnative.rst b/tutorials/scripting/gdnative/what_is_gdnative.rst similarity index 100% rename from tutorials/plugins/gdnative/what_is_gdnative.rst rename to tutorials/scripting/gdnative/what_is_gdnative.rst diff --git a/tutorials/scripting/index.rst b/tutorials/scripting/index.rst index f42d1d13d..974bde09f 100644 --- a/tutorials/scripting/index.rst +++ b/tutorials/scripting/index.rst @@ -8,6 +8,7 @@ Scripting gdscript/index visual_script/index c_sharp/index + gdnative/index cross_language_scripting creating_script_templates change_scenes_manually