summaryrefslogtreecommitdiff
path: root/doc/classes/EditorExportPlugin.xml
blob: 9ef2bd21ccaa173df35e7559fabfd92200234351 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?xml version="1.0" encoding="UTF-8" ?>
<class name="EditorExportPlugin" inherits="Reference" version="4.0">
	<brief_description>
		A script that is executed when exporting projects.
	</brief_description>
	<description>
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="_export_begin" qualifiers="virtual">
			<return type="void">
			</return>
			<argument index="0" name="features" type="PackedStringArray">
			</argument>
			<argument index="1" name="is_debug" type="bool">
			</argument>
			<argument index="2" name="path" type="String">
			</argument>
			<argument index="3" name="flags" type="int">
			</argument>
			<description>
				Virtual method to be overridden by the user. It is called when the export starts and provides all information about the export.
			</description>
		</method>
		<method name="_export_end" qualifiers="virtual">
			<return type="void">
			</return>
			<description>
				Virtual method to be overridden by the user. Called when the export is finished.
			</description>
		</method>
		<method name="_export_file" qualifiers="virtual">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<argument index="1" name="type" type="String">
			</argument>
			<argument index="2" name="features" type="PackedStringArray">
			</argument>
			<description>
			</description>
		</method>
		<method name="add_file">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<argument index="1" name="file" type="PackedByteArray">
			</argument>
			<argument index="2" name="remap" type="bool">
			</argument>
			<description>
			</description>
		</method>
		<method name="add_ios_bundle_file">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<description>
			</description>
		</method>
		<method name="add_ios_cpp_code">
			<return type="void">
			</return>
			<argument index="0" name="code" type="String">
			</argument>
			<description>
			</description>
		</method>
		<method name="add_ios_embedded_framework">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<description>
				Adds a dynamic library (*.dylib, *.framework) to Linking Phase in iOS's Xcode project and embeds it into resulting binary.
				[b]Note:[/b] For static libraries (*.a) works in same way as [code]add_ios_framework[/code].
				This method should not be used for System libraries as they are already present on the device.
			</description>
		</method>
		<method name="add_ios_framework">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<description>
				Adds a static library (*.a) or dynamic library (*.dylib, *.framework) to Linking Phase in iOS's Xcode project.
			</description>
		</method>
		<method name="add_ios_linker_flags">
			<return type="void">
			</return>
			<argument index="0" name="flags" type="String">
			</argument>
			<description>
			</description>
		</method>
		<method name="add_ios_plist_content">
			<return type="void">
			</return>
			<argument index="0" name="plist_content" type="String">
			</argument>
			<description>
			</description>
		</method>
		<method name="add_ios_project_static_lib">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<description>
			</description>
		</method>
		<method name="add_shared_object">
			<return type="void">
			</return>
			<argument index="0" name="path" type="String">
			</argument>
			<argument index="1" name="tags" type="PackedStringArray">
			</argument>
			<description>
			</description>
		</method>
		<method name="skip">
			<return type="void">
			</return>
			<description>
			</description>
		</method>
	</methods>
	<constants>
	</constants>
</class>