summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickey Ordog <36612632+mickeyordog@users.noreply.github.com>2024-07-09 16:22:10 -0700
committerRémi Verschelde <rverschelde@gmail.com>2024-07-17 11:30:13 +0200
commit6651a511c8f1e203bbf6062ebb04c23272c3d6e7 (patch)
tree894e717a75312575c410b947c7c081c0459fbe62
parent97b8ad1af0f2b4a216f6f1263bef4fbc69e56c7b (diff)
downloadredot-engine-6651a511c8f1e203bbf6062ebb04c23272c3d6e7.tar.gz
Fix unclear `PROPERTY_USAGE_STORAGE`/`EDITOR` description
-rw-r--r--doc/classes/@GlobalScope.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml
index bcab80ea94..2cd3a51722 100644
--- a/doc/classes/@GlobalScope.xml
+++ b/doc/classes/@GlobalScope.xml
@@ -2939,10 +2939,10 @@
The property is not stored, and does not display in the editor. This is the default for non-exported properties.
</constant>
<constant name="PROPERTY_USAGE_STORAGE" value="2" enum="PropertyUsageFlags" is_bitfield="true">
- The property is serialized and saved in the scene file (default).
+ The property is serialized and saved in the scene file (default for exported properties).
</constant>
<constant name="PROPERTY_USAGE_EDITOR" value="4" enum="PropertyUsageFlags" is_bitfield="true">
- The property is shown in the [EditorInspector] (default).
+ The property is shown in the [EditorInspector] (default for exported properties).
</constant>
<constant name="PROPERTY_USAGE_INTERNAL" value="8" enum="PropertyUsageFlags" is_bitfield="true">
The property is excluded from the class reference.