mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Clarify return value of get_dependencies()
This commit is contained in:
@@ -35,6 +35,12 @@
|
||||
<param index="0" name="path" type="String" />
|
||||
<description>
|
||||
Returns the dependencies for the resource at the given [param path].
|
||||
[b]Note:[/b] The dependencies are returned with slices separated by [code]::[/code]. You can use [method String.get_slice] to get their components.
|
||||
[codeblock]
|
||||
for dep in ResourceLoader.get_dependencies(path):
|
||||
print(dep.get_slice("::", 0)) # Prints UID.
|
||||
print(dep.get_slice("::", 2)) # Prints path.
|
||||
[/codeblock]
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_recognized_extensions_for_type">
|
||||
|
||||
Reference in New Issue
Block a user