Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-08T16:41:54.000Z (over 5 years ago)
- Last Synced: 2024-10-12T22:12:40.406Z (2 months ago)
- Language: GDScript
- Size: 41 KB
- Stars: 1
- Watchers: 2
- 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.