You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gdscript/README.md
+25-5Lines changed: 25 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,19 +2,39 @@
2
2
3
3
# GDScript Explorations:
4
4
5
-
To begin coding with GDScript, start by installing the [Godot Engine](https://godotengine.org/) to be able to write in GDScript. Another way to install Godot can be done [here](https://www.francogarcia.com/en/blog/development-environments-gdscript/#interpreter-and-text-editor).
5
+
To build and run GDScript programs on your local machine, download and install the most recent game engine version from the [Godot downloads page](https://godotengine.org/) or use your favorite package manager.
6
6
7
-
If you are on Windows and want to install Godot via the command line, type in the following command in Windows Powershell through the Administrator role (you will need to install [Chocolatey](https://chocolatey.org/install) if you have not yet done so already):
7
+
Programs in this folder can be run from the command line like so:
8
8
9
9
```
10
-
choco install godot
10
+
godot -s triple.gd
11
11
```
12
12
13
-
To run a gdscript like hello_world.gd, run the following command:
0 commit comments