diff options
author | Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> | 2021-12-06 00:01:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 00:01:19 +0200 |
commit | c01c4c687b23707987931d55718cfff9f738eddc (patch) | |
tree | 09766268990985056a1beb2cb61e71b46e9faa67 | |
parent | 49799ab454f1768485608011ea1db4fddfa0e787 (diff) |
Fix link to the supported image formats in the Image class
It previously linked to this page which doesn't exist. https://docs.godotengine.org/en/latest/getting_started/workflow/assets/importing_images.html#supported-image-formats
Now, it should link here: https://docs.godotengine.org/en/latest/tutorials/assets_pipeline/importing_images.html#supported-image-formats
-rw-r--r-- | doc/classes/Image.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Image.xml b/doc/classes/Image.xml index 8a4bbee0fa..29feb107d4 100644 --- a/doc/classes/Image.xml +++ b/doc/classes/Image.xml @@ -286,7 +286,7 @@ <return type="int" enum="Error" /> <argument index="0" name="path" type="String" /> <description> - Loads an image from file [code]path[/code]. See [url=$DOCS_URL/getting_started/workflow/assets/importing_images.html#supported-image-formats]Supported image formats[/url] for a list of supported image formats and limitations. + Loads an image from file [code]path[/code]. See [url=$DOCS_URL/tutorials/assets_pipeline/importing_images.html#supported-image-formats]Supported image formats[/url] for a list of supported image formats and limitations. [b]Warning:[/b] This method should only be used in the editor or in cases when you need to load external images at run-time, such as images located at the [code]user://[/code] directory, and may not work in exported projects. See also [ImageTexture] description for usage examples. </description> |