summaryrefslogtreecommitdiffstats
path: root/doc/classes/ResourceLoader.xml
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #97906 from Calinou/doc-fileaccess-non-resource-exportThaddeus Crews2024-11-111-0/+1
|\ | | | | | | Document non-resource file handling in FileAccess and ResourceLoader
| * Document non-resource file handling in FileAccess and ResourceLoaderHugo Locurcio2024-10-071-0/+1
| |
* | Merge pull request #99031 from Mickeon/white-space-jumpscareThaddeus Crews2024-11-111-1/+1
|\ \ | | | | | | | | | Trim a few no-break and zero-width spaces from codebase
| * | Trim a few no-break and zero-width spaces from codebaseMicky2024-11-101-1/+1
| | |
* | | Merge pull request #96590 from reduz/list-directoryThaddeus Crews2024-11-111-0/+7
|\ \ \ | |/ / |/| | | | | Provide a reliable way to see original resources in a directory
| * | Provide a reliable way to see original resources in a directoryJuan2024-10-071-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 descriptionHugo Locurcio2024-11-061-1/+1
|/
* Merge pull request #92530 from Naros/expose-resource-cache-get-refRémi Verschelde2024-08-281-0/+8
|\ | | | | | | Expose `get_cached_ref` from `ResourceCache`
| * Expose `get_cached_ref` from `ResourceCache`Chris Cranford2024-05-291-0/+8
| |
* | ResourceLoader: Support polling and get-before-complete on the main threadPedro J. Estébanez2024-06-281-1/+2
|/
* Update ResourceLoader.xml to clarify behaviour when no file is foundpgh16862024-05-051-1/+1
|
* Merge pull request #90310 from mhilbrunner/OutdatedDemosRémi Verschelde2024-04-081-1/+1
|\ | | | | | | Update links to outdated asset library demos
| * Update links to outdated asset library demosskyace652024-04-071-1/+1
| | | | | | | | | | | | Update links to outdated asset library demos Co-authored-by: Max Hilbrunner <m.hilbrunner@gmail.com>
* | [Doc] Document loading behavior with relative pathsA Thousand Ships2024-03-301-0/+1
|/
* Enhance cache modes in resource loadingPedro J. Estébanez2024-02-261-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 cachekobewi2023-12-101-0/+4
|
* Clarify return value of get_dependencies()kobewi2023-07-111-0/+6
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-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-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Overhaul the top sections of the class reference (Core classes)VolTer2023-05-191-2/+2
|
* Document caveats related to exported project binary resource conversionHugo Locurcio2023-05-081-0/+1
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* [doc] Use "param" instead of "code" to refer to parameters #3Andy Maloney2022-08-091-11/+11
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-20/+20
|
* Expose load_threaded_request's cachemode to GDScriptRobin Arys2022-07-311-0/+2
|
* Fix various typos not caught by codespellluz paz2022-07-211-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-timeRémi Verschelde2022-07-201-0/+1
|\
| * Document how to load Images and MP3 files at run-timeJohannes Witt2022-06-161-0/+1
| |
* | Exposes methods for adding and removing ResourceFormatLoaders and -Savers in ↵leogeier2022-06-291-0/+16
|/ | | | the ClassDB
* Add an XML schema for documentationHugo Locurcio2022-02-151-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 Alessandrelli2021-08-091-0/+7
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-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 parserMichael Alexsander Silva Dias2021-06-181-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2021-02-191-2/+8
| | | | And fix various bogus bindings following previous PRs.
* Document what can be used as a type hintskyace652020-12-151-2/+2
|
* Merge pull request #42439 from Xrayez/doc-gdscript-load-and-resloader-xrefRémi Verschelde2020-10-041-2/+2
|\ | | | | Cross-reference GDScript `load` and `ResourceLoader.load` in classref
| * Cross-reference GDScript `load` and `ResourceLoader.load` in classrefAndrii Doroshenko (Xrayez)2020-09-301-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 referenceAaron Franke2020-10-011-0/+1
|/
* Add LOTS of missing docsTomasz Chabora2020-03-131-0/+9
|
* doc: Fix wrong reference after last updateRémi Verschelde2020-02-291-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-291-4/+30
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-2/+2
| | | | Handle removal of Pool*Array types and other recent changes.
* Remove more deprecated methods and codeRémi Verschelde2020-02-131-9/+0
|
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-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 referenceHugo Locurcio2019-06-271-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* classesRémi Verschelde2019-06-181-3/+17
| | | | | Also move module-specific classes to their own module's `doc_classes` folder.
* Change "Return" to "Returns" where necessary in XML documentationSean Heffernan2019-05-231-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> tagRémi Verschelde2019-04-191-2/+0
|
* Merge pull request #27465 from ↵Rémi Verschelde2019-04-051-1/+1
|\ | | | | | | | | neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough EditorHelp: Improve enum ref resolving and add constant ref support