File: ResourceLoader.xml

package info (click to toggle)
godot 3.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 104,964 kB
  • sloc: ansic: 732,795; cpp: 601,776; xml: 56,216; asm: 17,127; lisp: 12,017; python: 9,048; java: 8,253; cs: 5,803; sh: 557; perl: 275; makefile: 98; objc: 17
file content (74 lines) | stat: -rw-r--r-- 2,118 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0" encoding="UTF-8" ?>
<class name="ResourceLoader" inherits="Object" category="Core" version="3.0.6">
	<brief_description>
		Resource Loader.
	</brief_description>
	<description>
		Resource Loader. This is a static object accessible as [code]ResourceLoader[/code]. GDScript has a simplified load() function, though.
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="get_dependencies">
			<return type="PoolStringArray">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<description>
			</description>
		</method>
		<method name="get_recognized_extensions_for_type">
			<return type="PoolStringArray">
			</return>
			<argument index="0" name="type" type="String">
			</argument>
			<description>
				Return the list of recognized extensions for a resource type.
			</description>
		</method>
		<method name="has">
			<return type="bool">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<description>
			</description>
		</method>
		<method name="load">
			<return type="Resource">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<argument index="1" name="type_hint" type="String" default="&quot;&quot;">
			</argument>
			<argument index="2" name="p_no_cache" type="bool" default="false">
			</argument>
			<description>
			</description>
		</method>
		<method name="load_interactive">
			<return type="ResourceInteractiveLoader">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<argument index="1" name="type_hint" type="String" default="&quot;&quot;">
			</argument>
			<description>
				Load a resource interactively, the returned object allows to load with high granularity.
			</description>
		</method>
		<method name="set_abort_on_missing_resources">
			<return type="void">
			</return>
			<argument index="0" name="abort" type="bool">
			</argument>
			<description>
				Change the behavior on missing sub-resources. Default is to abort load.
			</description>
		</method>
	</methods>
	<constants>
	</constants>
</class>