Browse Source

Add references for the built-in type pages in GDScript basics

Michael Alexsander 5 years ago
parent
commit
f7505fdf79
1 changed files with 6 additions and 6 deletions
  1. 6 6
      getting_started/scripting/gdscript/gdscript_basics.rst

+ 6 - 6
getting_started/scripting/gdscript/gdscript_basics.rst

@@ -348,19 +348,19 @@ null
 ``null`` is an empty data type that contains no information and can not
 be assigned any other value.
 
-bool
-^^^^
+:ref:`bool <class_bool>`
+^^^^^^^^^^^^^^^^^^^^^^^^
 
 Short for "boolean", it can only contain ``true`` or ``false``.
 
-int
-^^^
+:ref:`int <class_int>`
+^^^^^^^^^^^^^^^^^^^^^^
 
 Short for "integer", it stores whole numbers (positive and negative).
 It is stored as a 64-bit value, equivalent to "int64_t" in C++.
 
-float
-^^^^^
+:ref:`float <class_float>`
+^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 Stores real numbers, including decimals, using floating-point values.
 It is stored as a 64-bit value, equivalent to "double" in C++.