Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tutorials/scripting/gdscript/gdscript_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1364,7 +1364,8 @@ want to assign consecutive integers to some constant.

If you pass a name to the enum, it will put all the keys inside a constant
:ref:`Dictionary <class_Dictionary>` of that name. This means all constant methods of
a dictionary can also be used with a named enum.
a dictionary can also be used with a named enum. This only works for
GDScript enums, not for enums from built-in classes.

.. important:: Keys in a named enum are not registered
as global constants. They should be accessed prefixed
Expand Down
Loading