https://github.com/compufox/godot-todoplugin
A plugin for Godot that keeps track of your todo list for your game
https://github.com/compufox/godot-todoplugin
Last synced: 4 months ago
JSON representation
A plugin for Godot that keeps track of your todo list for your game
- Host: GitHub
- URL: https://github.com/compufox/godot-todoplugin
- Owner: compufox
- License: mit
- Created: 2018-06-18T15:53:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-08T16:41:54.000Z (over 7 years ago)
- Last Synced: 2025-10-04T22:50:36.726Z (10 months ago)
- Language: GDScript
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Godot TODO Tracker Plugin
Easily keep track of items on your 'todo' list directly in the editor!
## Features
- Ability to add, edit, and delete items
- Saves to configurable location
- Saves as INI file
- Automatic backups of todo list
- Scans source files and adds items to list
## Source File Scanning
The plugin can be set up to scan all gdscript files in a user specified location.
For an item to be automatically added they must look like the following in the source:
```
# TODO work on better scanning logic
# although what we have now is decent enough, it
# could be a lot faster and more memory efficient
```
The text next to the `TODO` statement will be picked up and saved as the todo item title and every
comment underneath will be saved along as the comment.