From d05f673669d157609c986f7bb3250d2339bd7711 Mon Sep 17 00:00:00 2001 From: Ken Paulson Date: Wed, 5 Jun 2019 15:53:55 -0400 Subject: [PATCH] Changes to OS.has_feature() docs: - Added link to the Feature Tags documentation - Added note that tag names are case-sensitive (cherry picked from commit 349e924cad20fcbea9d0866fe5e63c8ae5a98acc) --- doc/classes/OS.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/classes/OS.xml b/doc/classes/OS.xml index f5fafe1340..59110b521a 100644 --- a/doc/classes/OS.xml +++ b/doc/classes/OS.xml @@ -504,7 +504,8 @@ - Returns [code]true[/code] if the feature for the given feature tag is supported in the currently running instance, depending on platform, build etc. Can be used to check whether you're currently running a debug build, on a certain platform or arch, etc. See feature tags documentation. + Returns [code]true[/code] if the feature for the given feature tag is supported in the currently running instance, depending on platform, build etc. Can be used to check whether you're currently running a debug build, on a certain platform or arch, etc. Refer to the [url=https://docs.godotengine.org/en/latest/getting_started/workflow/export/feature_tags.html]Feature Tags[/url] documentation for more details. + Note that tag names are case-sensitive.