Browse Source

Merge pull request #9407 from ceejbro/patch-1

Remove Note from Constants
Matthew 1 year ago
parent
commit
194685b65d
1 changed files with 0 additions and 6 deletions
  1. 0 6
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 0 - 6
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -1243,12 +1243,6 @@ Assigning a value of an incompatible type will raise an error.
 You can also create constants inside a function, which is useful to name local
 magic values.
 
-.. note::
-
-    Since objects, arrays and dictionaries are passed by reference, constants are "flat".
-    This means that if you declare a constant array or dictionary, it can still
-    be modified afterwards. They can't be reassigned with another value though.
-
 Enums
 ^^^^^