Browse Source

Added tags and updated doc

Leandro (cerberus1746) Benedet Garcia 4 ngày trước cách đây
mục cha
commit
97f5aad069

+ 4 - 0
tutorials/export/feature_tags.rst

@@ -108,6 +108,10 @@ Here is a list of most feature tags in Godot. Keep in mind they are **case-sensi
 +--------------------+----------------------------------------------------------+
 +--------------------+----------------------------------------------------------+
 | **web**            | Host OS is a Web browser                                 |
 | **web**            | Host OS is a Web browser                                 |
 +--------------------+----------------------------------------------------------+
 +--------------------+----------------------------------------------------------+
+| **nothreads**      | Running without threading support                        |
++--------------------+----------------------------------------------------------+
+| **threads**        | Running with threading support                           |
++--------------------+----------------------------------------------------------+
 | **web_android**    | Host OS is a Web browser running on Android              |
 | **web_android**    | Host OS is a Web browser running on Android              |
 +--------------------+----------------------------------------------------------+
 +--------------------+----------------------------------------------------------+
 | **web_ios**        | Host OS is a Web browser running on iOS                  |
 | **web_ios**        | Host OS is a Web browser running on iOS                  |

+ 10 - 0
tutorials/scripting/gdextension/gdextension_file.rst

@@ -66,6 +66,16 @@ Here is an example of what that can look like:
     linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so"
     linux.release.rv64 = "res://bin/libgdexample.linux.template_release.rv64.so"
 
 
 
 
+Entries are matched in order, so if two sets of feature tags could match
+the same system, be sure to put the more specific ones first:
+
+.. code-block:: none
+
+    [libraries]
+
+    linux.release.editor.x86_64 = "res://bin/libgdexample.linux.template_release.x86_64.so"
+    linux.release.x86_64 = "res://bin/libgdexample.linux.noeditor.template_release.x86_64.so"
+
 Here are lists of some of the available built-in options (for more look at the :ref:`feature tags <doc_feature_tags>`):
 Here are lists of some of the available built-in options (for more look at the :ref:`feature tags <doc_feature_tags>`):
 
 
 Running system
 Running system