EditorExportPlugin.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="EditorExportPlugin" inherits="Reference" version="3.2">
  3. <brief_description>
  4. A script that is executed when exporting projects.
  5. </brief_description>
  6. <description>
  7. </description>
  8. <tutorials>
  9. </tutorials>
  10. <methods>
  11. <method name="_export_begin" qualifiers="virtual">
  12. <return type="void">
  13. </return>
  14. <argument index="0" name="features" type="PoolStringArray">
  15. </argument>
  16. <argument index="1" name="is_debug" type="bool">
  17. </argument>
  18. <argument index="2" name="path" type="String">
  19. </argument>
  20. <argument index="3" name="flags" type="int">
  21. </argument>
  22. <description>
  23. Virtual method to be overridden by the user. It is called when the export starts and provides all information about the export.
  24. </description>
  25. </method>
  26. <method name="_export_end" qualifiers="virtual">
  27. <return type="void">
  28. </return>
  29. <description>
  30. Virtual method to be overridden by the user. Called when the export is finished.
  31. </description>
  32. </method>
  33. <method name="_export_file" qualifiers="virtual">
  34. <return type="void">
  35. </return>
  36. <argument index="0" name="path" type="String">
  37. </argument>
  38. <argument index="1" name="type" type="String">
  39. </argument>
  40. <argument index="2" name="features" type="PoolStringArray">
  41. </argument>
  42. <description>
  43. </description>
  44. </method>
  45. <method name="add_file">
  46. <return type="void">
  47. </return>
  48. <argument index="0" name="path" type="String">
  49. </argument>
  50. <argument index="1" name="file" type="PoolByteArray">
  51. </argument>
  52. <argument index="2" name="remap" type="bool">
  53. </argument>
  54. <description>
  55. </description>
  56. </method>
  57. <method name="add_ios_bundle_file">
  58. <return type="void">
  59. </return>
  60. <argument index="0" name="path" type="String">
  61. </argument>
  62. <description>
  63. </description>
  64. </method>
  65. <method name="add_ios_cpp_code">
  66. <return type="void">
  67. </return>
  68. <argument index="0" name="code" type="String">
  69. </argument>
  70. <description>
  71. </description>
  72. </method>
  73. <method name="add_ios_framework">
  74. <return type="void">
  75. </return>
  76. <argument index="0" name="path" type="String">
  77. </argument>
  78. <description>
  79. </description>
  80. </method>
  81. <method name="add_ios_linker_flags">
  82. <return type="void">
  83. </return>
  84. <argument index="0" name="flags" type="String">
  85. </argument>
  86. <description>
  87. </description>
  88. </method>
  89. <method name="add_ios_plist_content">
  90. <return type="void">
  91. </return>
  92. <argument index="0" name="plist_content" type="String">
  93. </argument>
  94. <description>
  95. </description>
  96. </method>
  97. <method name="add_ios_project_static_lib">
  98. <return type="void">
  99. </return>
  100. <argument index="0" name="path" type="String">
  101. </argument>
  102. <description>
  103. </description>
  104. </method>
  105. <method name="add_shared_object">
  106. <return type="void">
  107. </return>
  108. <argument index="0" name="path" type="String">
  109. </argument>
  110. <argument index="1" name="tags" type="PoolStringArray">
  111. </argument>
  112. <description>
  113. </description>
  114. </method>
  115. <method name="skip">
  116. <return type="void">
  117. </return>
  118. <description>
  119. </description>
  120. </method>
  121. </methods>
  122. <constants>
  123. </constants>
  124. </class>