From eb17706cd9985ffda06aaf6657b091e6ab7e12d8 Mon Sep 17 00:00:00 2001 From: Rodrigo Matos Date: Sun, 14 Jul 2019 19:33:56 -0300 Subject: [PATCH] [Minor] Getting Started corrections (#2611) * Update gdscript_basics.rst * Small typo --- getting_started/scripting/gdscript/gdscript_basics.rst | 2 +- getting_started/step_by_step/scripting_continued.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/getting_started/scripting/gdscript/gdscript_basics.rst b/getting_started/scripting/gdscript/gdscript_basics.rst index 5630fddb9..e02fd9d0e 100644 --- a/getting_started/scripting/gdscript/gdscript_basics.rst +++ b/getting_started/scripting/gdscript/gdscript_basics.rst @@ -1351,7 +1351,7 @@ initializers, but they must be constant expressions. export(Array, int) var ints = [1,2,3] export(Array, int, "Red", "Green", "Blue") var enums = [2, 1, 0] - export(Array, Array, float) var two_dimensional = [[1, 2], [3, 4]] + export(Array, Array, float) var two_dimensional = [[1.0, 2.0], [3.0, 4.0]] # You can omit the default value, but then it would be null if not assigned. diff --git a/getting_started/step_by_step/scripting_continued.rst b/getting_started/step_by_step/scripting_continued.rst index 56b51aa5b..f6af5387d 100644 --- a/getting_started/step_by_step/scripting_continued.rst +++ b/getting_started/step_by_step/scripting_continued.rst @@ -33,7 +33,7 @@ This method will be called every time a frame is drawn: // Do something... } -It's important to bear in mind that the frequecy with which ``_process()`` +It's important to bear in mind that the frequency with which ``_process()`` will be called depends on how many frames per second (FPS) your application is running at. This rate can vary over time and devices.