Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve phrasing of constants in GDScript basics #4036

Merged
merged 2 commits into from
Sep 18, 2020
Merged
Changes from 1 commit
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
7 changes: 5 additions & 2 deletions getting_started/scripting/gdscript/gdscript_basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,11 @@ the scene tree::
Constants
~~~~~~~~~

Constants are similar to variables, but must be constants or constant
expressions and must be assigned on initialization.
Constants are values you cannot change when the game is running. Using the
NathanLovato marked this conversation as resolved.
Show resolved Hide resolved
``const`` keyword allows you to give a constant value a name. Trying to assign a
value to a constant will give you an error.
NathanLovato marked this conversation as resolved.
Show resolved Hide resolved

We recommend using constants whenever a value is not meant to change.

::

Expand Down