File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,10 @@ Here is a list of most feature tags in Godot. Keep in mind they are **case-sensi
108108+--------------------+----------------------------------------------------------+
109109| **web ** | Host OS is a Web browser |
110110+--------------------+----------------------------------------------------------+
111+ | **nothreads ** | Running without threads support |
112+ +--------------------+----------------------------------------------------------+
113+ | **threads ** | Running with threads support |
114+ +--------------------+----------------------------------------------------------+
111115| **web_android ** | Host OS is a Web browser running on Android |
112116+--------------------+----------------------------------------------------------+
113117| **web_ios ** | Host OS is a Web browser running on iOS |
Original file line number Diff line number Diff line change @@ -68,6 +68,16 @@ Here is an example of what that can look like:
6868
6969 Here are lists of some of the available built-in options (for more look at the :ref: `feature tags <doc_feature_tags >`):
7070
71+ Tags that have a `no ` suffix (like `nothreads `) should be placed after their
72+ counterparts since they are evaluated in order. Like so:
73+
74+ .. code-block :: none
75+
76+ [libraries]
77+
78+ web.release.threads.wasm32 = "res://bin/libgdexample.web.template_release.wasm32.wasm"
79+ web.release.nothreads.wasm32 = "res://bin/libgdexample.web.template_release.wasm32.nothreads.wasm"
80+
7181 Running system
7282~~~~~~~~~~~~~~
7383
You can’t perform that action at this time.
0 commit comments