https://github.com/gdquest/godot-learning-app-exporter
Exports Godot projects for usage in the GDQuest learning app
https://github.com/gdquest/godot-learning-app-exporter
Last synced: 12 months ago
JSON representation
Exports Godot projects for usage in the GDQuest learning app
- Host: GitHub
- URL: https://github.com/gdquest/godot-learning-app-exporter
- Owner: GDQuest
- Created: 2021-09-15T16:10:07.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-15T16:11:12.000Z (almost 5 years ago)
- Last Synced: 2025-01-17T00:11:20.682Z (over 1 year ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 3
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GDQuest Godot Learning App Exporter
In order to use a project in a lesson with the GDScript Live Editor, a project must be prepared.
This small utility with 0 dependencies builds the required configuration file.
You will need Node to run the utility.
### Usage
```sh
npx godot-learning-app-exporter path/to/godot/project
```
`path/to/godot/project` is the directory where a `project.godot` file can be found.
This command will output JSON with the proper configuration to STDOUT.
Pipe it/redirect it to the tool of your choice
If you don't like redirection, just use --output:
```sh
npx godot-learning-app-exporter path/to/godot/project -o config.json
```
### FLAGS:
- -h --help this help text
- -o --output [file] save to file