Преглед на файлове

Merge pull request #6873 from paddy-exe/fix-gdextension-path

Fix GDExtension file path for extension registration
Max Hilbrunner преди 2 години
родител
ревизия
d626c1aa89
променени са 1 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      tutorials/scripting/gdextension/gdextension_cpp_example.rst

+ 3 - 3
tutorials/scripting/gdextension/gdextension_cpp_example.rst

@@ -349,9 +349,9 @@ loaded for each platform and the entry function for the module. It is called ``g
 
     [libraries]
 
-    linux.64="res://bin/libgdexample.linux.64.so"
-    windows.x86_64="res://bin/libgdexample.windows.x86_64.dll"
-    macos="res://bin/libgdexample.macos.framework"
+    linux.64="res://demo/bin/libgdexample.linux.64.so"
+    windows.x86_64="res://demo/bin/libgdexample.windows.x86_64.dll"
+    macos="res://demo/bin/libgdexample.macos.framework"
 
 This file contains a ``configuration`` section that controls the entry function of the module.