mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-03 05:48:42 +03:00
[Minor] Getting Started corrections (#2611)
* Update gdscript_basics.rst * Small typo
This commit is contained in:
committed by
Chris Bradfield
parent
aa6c513cc3
commit
eb17706cd9
@@ -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.
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user