diff options
| author | Thakee Nathees <thakeenathees@gmail.com> | 2020-11-29 08:07:57 +0530 |
|---|---|---|
| committer | Thakee Nathees <thakeenathees@gmail.com> | 2020-11-29 19:45:36 +0530 |
| commit | d0e7d9b62f0bcc2ba438b12c8bfbf68d82fff0ea (patch) | |
| tree | e2798248857411a781ac192cb847baed59ceb9f2 /editor/editor_file_system.cpp | |
| parent | ef2d1f6d19f861f0f4d9cf7c581795bc7f4016d8 (diff) | |
| download | redot-engine-d0e7d9b62f0bcc2ba438b12c8bfbf68d82fff0ea.tar.gz | |
Documentation generation for GDScript
- ClassDoc added to GDScript and property reflection data were extracted
from parse tree
- GDScript comments are collected from tokenizer for documentation and
applied to the ClassDoc by the GDScript compiler
- private docs were excluded (name with underscore prefix and doesn't
have any doc comments)
- default values (of non exported vars), arguments are extraced from the
parser
- Integrated with GDScript 2.0 and new enums were added.
- merge conflicts fixed
Diffstat (limited to 'editor/editor_file_system.cpp')
| -rw-r--r-- | editor/editor_file_system.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/editor/editor_file_system.cpp b/editor/editor_file_system.cpp index c66bc9b3fa..44c29ab81f 100644 --- a/editor/editor_file_system.cpp +++ b/editor/editor_file_system.cpp @@ -799,6 +799,15 @@ void EditorFileSystem::_scan_new_dir(EditorFileSystemDirectory *p_dir, DirAccess } } + if (fc) { + for (int i = 0; i < ScriptServer::get_language_count(); i++) { + ScriptLanguage *lang = ScriptServer::get_language(i); + if (lang->has_documentation() && fc->type == lang->get_type()) { + ResourceLoader::load(path); + } + } + } + p_dir->files.push_back(fi); p_progress.update(idx, total); } |
