Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #97906 from Calinou/doc-fileaccess-non-resource-export | Thaddeus Crews | 2024-11-11 | 1 | -0/+1 |
|\ | | | | | | | Document non-resource file handling in FileAccess and ResourceLoader | ||||
| * | Document non-resource file handling in FileAccess and ResourceLoader | Hugo Locurcio | 2024-10-07 | 1 | -0/+1 |
| | | |||||
* | | Merge pull request #99031 from Mickeon/white-space-jumpscare | Thaddeus Crews | 2024-11-11 | 1 | -1/+1 |
|\ \ | | | | | | | | | | Trim a few no-break and zero-width spaces from codebase | ||||
| * | | Trim a few no-break and zero-width spaces from codebase | Micky | 2024-11-10 | 1 | -1/+1 |
| | | | |||||
* | | | Merge pull request #96590 from reduz/list-directory | Thaddeus Crews | 2024-11-11 | 1 | -0/+7 |
|\ \ \ | |/ / |/| | | | | | Provide a reliable way to see original resources in a directory | ||||
| * | | Provide a reliable way to see original resources in a directory | Juan | 2024-10-07 | 1 | -0/+7 |
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When exporting a project, resources are often moved, converted or remapped (source import files are gone, text scenes are converted to binary, etc). This new function allows to list a directory and obtain the actual original resource files. Example ```GDScript var resources = ResourceLoader.list_directory("res://images") print(resources) ``` Result will be something like: ``` ["image1.png","image2.png","image3.png"] ``` instead of ``` ["image1.png.import","image2.png.import","image3.png.import"] ``` | ||||
* / | Clarify `ResourceLoader.load_threaded_get_status()` completion ratio description | Hugo Locurcio | 2024-11-06 | 1 | -1/+1 |
|/ | |||||
* | Merge pull request #92530 from Naros/expose-resource-cache-get-ref | Rémi Verschelde | 2024-08-28 | 1 | -0/+8 |
|\ | | | | | | | Expose `get_cached_ref` from `ResourceCache` | ||||
| * | Expose `get_cached_ref` from `ResourceCache` | Chris Cranford | 2024-05-29 | 1 | -0/+8 |
| | | |||||
* | | ResourceLoader: Support polling and get-before-complete on the main thread | Pedro J. Estébanez | 2024-06-28 | 1 | -1/+2 |
|/ | |||||
* | Update ResourceLoader.xml to clarify behaviour when no file is found | pgh1686 | 2024-05-05 | 1 | -1/+1 |
| | |||||
* | Merge pull request #90310 from mhilbrunner/OutdatedDemos | Rémi Verschelde | 2024-04-08 | 1 | -1/+1 |
|\ | | | | | | | Update links to outdated asset library demos | ||||
| * | Update links to outdated asset library demos | skyace65 | 2024-04-07 | 1 | -1/+1 |
| | | | | | | | | | | | | Update links to outdated asset library demos Co-authored-by: Max Hilbrunner <m.hilbrunner@gmail.com> | ||||
* | | [Doc] Document loading behavior with relative paths | A Thousand Ships | 2024-03-30 | 1 | -0/+1 |
|/ | |||||
* | Enhance cache modes in resource loading | Pedro J. Estébanez | 2024-02-26 | 1 | -3/+9 |
| | | | | | | | - Unify documentation, hoping to clear misconcepctions about about propagation of the cache mode across dependant loads. - Clarify in docs that `CACHE_MODE_REPLACE` now also works on the main resource (from #87008). - Add two recursive modes, counterparts of `CACHE_MODE_REPLACE` and `CACHE_MODE_IGNORE`, since it seems some need them (see #59669, #82830). - Let resources, even loaded with one of the ignore-cache modes, get a path, which is useful for tools. | ||||
* | Clarify some descriptions regarding resource cache | kobewi | 2023-12-10 | 1 | -0/+4 |
| | |||||
* | Clarify return value of get_dependencies() | kobewi | 2023-07-11 | 1 | -0/+6 |
| | |||||
* | Doctool: Remove version attribute from XML header | Rémi Verschelde | 2023-07-06 | 1 | -1/+1 |
| | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb). | ||||
* | Bump version to 4.2-dev | Rémi Verschelde | 2023-07-05 | 1 | -1/+1 |
| | | | | Keep on waitin' | ||||
* | Overhaul the top sections of the class reference (Core classes) | VolTer | 2023-05-19 | 1 | -2/+2 |
| | |||||
* | Document caveats related to exported project binary resource conversion | Hugo Locurcio | 2023-05-08 | 1 | -0/+1 |
| | |||||
* | Bump version to 4.1-dev | Rémi Verschelde | 2023-03-01 | 1 | -1/+1 |
| | | | | Can't stop, won't stop, they said, huh? | ||||
* | [doc] Use "param" instead of "code" to refer to parameters #3 | Andy Maloney | 2022-08-09 | 1 | -11/+11 |
| | |||||
* | Rename the argument tag to param in XML documentation | Yuri Sizov | 2022-08-08 | 1 | -20/+20 |
| | |||||
* | Expose load_threaded_request's cachemode to GDScript | Robin Arys | 2022-07-31 | 1 | -0/+2 |
| | |||||
* | Fix various typos not caught by codespell | luz paz | 2022-07-21 | 1 | -1/+1 |
| | | | Revert upstream `core/input/gamecontrollerdb.txt`. Upstream fix: https://github.com/gabomdq/SDL_GameControllerDB/pull/600 | ||||
* | Merge pull request #47935 from HaSa1002/doc-loading-run-time | Rémi Verschelde | 2022-07-20 | 1 | -0/+1 |
|\ | |||||
| * | Document how to load Images and MP3 files at run-time | Johannes Witt | 2022-06-16 | 1 | -0/+1 |
| | | |||||
* | | Exposes methods for adding and removing ResourceFormatLoaders and -Savers in ↵ | leogeier | 2022-06-29 | 1 | -0/+16 |
|/ | | | | the ClassDB | ||||
* | Add an XML schema for documentation | Hugo Locurcio | 2022-02-15 | 1 | -1/+1 |
| | | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions. | ||||
* | [Core] Expose ResourceLoader.get_resource_uid. | Fabio Alessandrelli | 2021-08-09 | 1 | -0/+7 |
| | |||||
* | doc: Use self-closing tags for `return` and `argument` | Rémi Verschelde | 2021-07-30 | 1 | -48/+24 |
| | | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there. | ||||
* | Better format arguments in variant parser | Michael Alexsander Silva Dias | 2021-06-18 | 1 | -1/+1 |
| | |||||
* | doc: Sync classref with current source | Rémi Verschelde | 2021-02-19 | 1 | -2/+8 |
| | | | | And fix various bogus bindings following previous PRs. | ||||
* | Document what can be used as a type hint | skyace65 | 2020-12-15 | 1 | -2/+2 |
| | |||||
* | Merge pull request #42439 from Xrayez/doc-gdscript-load-and-resloader-xref | Rémi Verschelde | 2020-10-04 | 1 | -2/+2 |
|\ | | | | | Cross-reference GDScript `load` and `ResourceLoader.load` in classref | ||||
| * | Cross-reference GDScript `load` and `ResourceLoader.load` in classref | Andrii Doroshenko (Xrayez) | 2020-09-30 | 1 | -2/+2 |
| | | | | | | | | | | | | The GDScript `load` mention is moved from the class `ResourceLoader` description to the `ResourceLoader.load` method description instead, where it is more likely to be found. | ||||
* | | Link to demos from within the class reference | Aaron Franke | 2020-10-01 | 1 | -0/+1 |
|/ | |||||
* | Add LOTS of missing docs | Tomasz Chabora | 2020-03-13 | 1 | -0/+9 |
| | |||||
* | doc: Fix wrong reference after last update | Rémi Verschelde | 2020-02-29 | 1 | -1/+1 |
| | |||||
* | doc: Sync classref with current source | Rémi Verschelde | 2020-02-29 | 1 | -4/+30 |
| | |||||
* | doc: Sync classref with current source | Rémi Verschelde | 2020-02-18 | 1 | -2/+2 |
| | | | | Handle removal of Pool*Array types and other recent changes. | ||||
* | Remove more deprecated methods and code | Rémi Verschelde | 2020-02-13 | 1 | -9/+0 |
| | |||||
* | Update docs to version 4.0 | clayjohn | 2020-01-31 | 1 | -1/+1 |
| | |||||
* | doc: Drop unused 'category' property from header | Rémi Verschelde | 2020-01-26 | 1 | -1/+1 |
| | | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0. | ||||
* | Proofread and improve the whole class reference | Hugo Locurcio | 2019-06-27 | 1 | -2/+2 |
| | | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies | ||||
* | doc: Improve docs for Resource* classes | Rémi Verschelde | 2019-06-18 | 1 | -3/+17 |
| | | | | | Also move module-specific classes to their own module's `doc_classes` folder. | ||||
* | Change "Return" to "Returns" where necessary in XML documentation | Sean Heffernan | 2019-05-23 | 1 | -1/+1 |
| | | | | | | | | In many of the XML files it had been noted that when the documentation refers to a return value, both "Return" and "Returns" are used. This has now been fixed to only say "Returns". Fixes #28867 | ||||
* | doc: Drop unused <demos> tag | Rémi Verschelde | 2019-04-19 | 1 | -2/+0 |
| | |||||
* | Merge pull request #27465 from ↵ | Rémi Verschelde | 2019-04-05 | 1 | -1/+1 |
|\ | | | | | | | | | neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough EditorHelp: Improve enum ref resolving and add constant ref support |