2
0

uploading_to_assetlib.rst 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. .. _doc_uploading_to_assetlib:
  2. Submitting to the Asset Library
  3. ===============================
  4. Introduction
  5. ------------
  6. This tutorial aims to serve as a guide on how you can submit your own assets
  7. to the Godot Asset Library and share them with the Godot community.
  8. As mentioned in the :ref:`doc_using_assetlib` document, in order to be able to
  9. submit assets to the AssetLib, you need to have a registered account, and be
  10. logged in.
  11. Submission guidelines
  12. ---------------------
  13. Before submitting your asset, please ensure it follows all of the
  14. requirements, and also consider following the recommendations.
  15. Requirements
  16. ~~~~~~~~~~~~
  17. Generally speaking, most assets people submit to the asset library
  18. are accepted. However, in order for your asset to be accepted, there
  19. are a few requirements your asset needs to meet to be approved.
  20. * The asset must **work**. If the asset doesn't run or otherwise doesn't
  21. work in the specified Godot version, then it will be rejected.
  22. * The asset must have a proper **.gitignore** file. It's important to
  23. keep redundant data out of the repository.
  24. `Here's a template. <https://raw.githubusercontent.com/aaronfranke/gitignore/godot/Godot.gitignore>`_
  25. * No **submodules**, or any submodules must be non-essential. GitHub
  26. does not include submodules in the downloaded ZIP file, so if the
  27. asset needs the contents of the submodule, your asset won't work.
  28. * The **license** needs to be correct. The license listed on the asset
  29. library must match the license in the repository. The repo MUST
  30. have a license file, called either "LICENSE" or "LICENSE.md".
  31. This file must contain the license text itself and a copyright
  32. statement that includes the year(s) and copyright holder.
  33. * Use proper **English** for the name and description of your asset.
  34. This includes using correct capitalization, and using full
  35. sentences in the description. You can also include other languages,
  36. but there should at least be an English version.
  37. * The icon link must be a **direct link**. For icons hosted on GitHub, the
  38. link must start with "raw.githubusercontent.com", not "github.com".
  39. Recommendations
  40. ~~~~~~~~~~~~~~~
  41. These things are not required for your asset to be approved, but
  42. if you follow these recommendations, you can help make the asset
  43. library a better place for all users.
  44. * Fix or suppress all script **warnings**. The warning system is there to
  45. help identify issues with your code, but people using your asset
  46. don't need to see them.
  47. * Make your code conform to the official **style guides**. Having a
  48. consistent style helps other people read your code, and it also helps
  49. if other people wish to contribute to your asset. See: the
  50. :ref:`doc_gdscript_styleguide` or the :ref:`doc_c_sharp_styleguide`.
  51. * If you have screenshots in your repo, place them in their own subfolder
  52. and add an empty **.gdignore** file in the same folder (note: **gd**, not **git**).
  53. This prevents Godot from importing your screenshots.
  54. On Windows, open a command prompt in the project folder and run
  55. ``type nul > .gdignore`` to create a file whose name starts with a period.
  56. * If your asset is a library for working with other files,
  57. consider including **example files** in the asset.
  58. * Consider adding a **.gitattributes** file to your repo. This file allows
  59. giving extra instructions to Git, such as specifying line endings and listing
  60. files not required for your asset to function with the ``export-ignore``
  61. directive. This directive removes such files from the resulting ZIP file
  62. and prevents them from being downloaded by the asset library users.
  63. For a typical plugin **.gitattributes** may look like this:
  64. .. code-block:: none
  65. # Normalize EOL for all files that Git considers text files.
  66. * text=auto eol=lf
  67. # Ignore some files when exporting to a ZIP.
  68. /.gitattributes export-ignore
  69. /.gitignore export-ignore
  70. /LICENSE export-ignore
  71. /LICENSE.md export-ignore
  72. /README.md export-ignore
  73. /project.godot export-ignore
  74. /icon.png export-ignore
  75. /icon.svg export-ignore
  76. Other types of assets may require a different configuration (e.g.
  77. a project template requires **project.godot**).
  78. * If you are submitting a plugin, add a **copy** of your license and readme
  79. to the plugin folder itself. This is the folder that users are guaranteed to
  80. keep with their project, so a copy ensures they always have those files handy
  81. (and helps them fulfill your licensing terms).
  82. * The **icon** should be a square, its aspect ratio should be 1:1. It should
  83. also ideally have a minimum resolution of 64x64 pixels.
  84. * While the asset library allows more than just GitHub, consider
  85. hosting your asset's source code on **GitHub**. Other services may not
  86. work reliably, and a lack of familiarity can be a barrier to contributors.
  87. Submitting
  88. ----------
  89. Once you are logged in, you will be able to head over to the "Submit Assets" page
  90. of the AssetLib, which will look like this:
  91. |image0|
  92. While it may look like a lot (and there is more as you scroll down), each field is
  93. described in terms of what you should put in. We will nonetheless go over what
  94. is required in the submission form here as well.
  95. * **Asset Name**:
  96. The name of your asset. Should be a unique, descriptive title of
  97. what your asset is.
  98. * **Category**:
  99. The category that your asset belongs to, and will be shown in
  100. search results. The category is split into **Addons** and **Projects**.
  101. In-editor, assets of the Project type (Templates, Demos, Projects) only show
  102. up when viewing the AssetLib from the Project Manager, while assets of the
  103. Addon type will only be visible from inside a project.
  104. * **Godot version**:
  105. The version of the engine that the asset works with.
  106. Currently, it's not possible to have a single asset entry contain downloads for
  107. multiple engine versions, so you may need to re-submit the asset multiple times,
  108. with an entry for each Godot version it supports. This is particularly important
  109. when dealing with major versions of the engine, such as Godot 2.x and Godot 3.x.
  110. * **Version**:
  111. The version number of the asset. While you are free to choose
  112. and use any versioning scheme that you like, you may want to look into
  113. something such as `SemVer <https://semver.org>`_ if you want your asset's
  114. versioning scheme to be clear and consistent. Note that there is also an
  115. internal version number, incremented every time the asset download URL is
  116. changed or updated.
  117. * **Repository host**:
  118. Assets uploaded to the AssetLib are not hosted on it
  119. directly. Instead, they point to repositories hosted on third-party Git providers,
  120. such as GitHub, GitLab or Bitbucket. This is where you choose which provider
  121. your asset uses, so the site can compute the final download link.
  122. * **Repository URL**:
  123. The URL to your asset's files/webpage. This will vary
  124. based on your choice of provider, but it should look similar to `https://github.com/<user>/<project>`.
  125. * **Issues URL**:
  126. The URL to your asset's issue tracker. Again, this will differ
  127. from repository host to repository host, but will likely look similar to
  128. `https://github.com/<user>/<project>/issues`. You may leave this field empty
  129. if you use your provider's issue tracker, and it's part of the same repository.
  130. * **Download Commit**:
  131. The commit of the asset. For example,
  132. `b1d3172f89b86e52465a74f63a74ac84c491d3e1`. The site computes
  133. the actual download URL from this.
  134. * **Icon URL**:
  135. The URL to your asset's icon (which will be used as a thumbnail
  136. in the AssetLib search results and on the asset's page). Should be an image
  137. in either the PNG or JPG format.
  138. * **License**:
  139. The license under which you are distributing the asset. The list
  140. includes a variety of free and open-source software licenses, such as GPL
  141. (v2 and v3), MIT, BSD and Boost Software License. You can visit `OpenSource.org <https://opensource.org>`_
  142. for a detailed description of each of the listed licenses.
  143. * **Description**:
  144. Finally, you can use the Description field for a textual
  145. overview of your asset, its features and behavior, a changelog, et cetera. In the
  146. future, formatting with Markdown will be supported, but currently, your only
  147. option is plain text.
  148. You may also include up to three video and/or image previews, which will be shown
  149. at the bottom of the asset page. Use the "Enable" checkbox on each of the preview
  150. submission boxes to enable them.
  151. * **Type**:
  152. Either an image, or a video.
  153. * **Image/YouTube URL**:
  154. Either a link to the image, or to a video, hosted on YouTube.
  155. * **Thumbnail URL**:
  156. A URL to an image that will be used as a thumbnail for the
  157. preview. This option will be removed eventually, and thumbnails will be automatically
  158. computed instead.
  159. Once you are done, hit Submit. Your asset will be entered into the pending queue,
  160. which you can visit on the AssetLib `here <https://godotengine.org/asset-library/asset/edit?&asset=-1>`_ . The approval process is manual and may
  161. take up to a few days for your addon to be accepted (or rejected), so please
  162. be patient! You will be informed when your asset is reviewed. If it was rejected,
  163. you will be told why that may have been, and you will be able to submit it again
  164. with the appropriate changes.
  165. You may have some luck accelerating the approval process by messaging the
  166. moderators/assetlib reviewers on the `Godot Contributors Chat <https://chat.godotengine.org/>`_'s
  167. ``#general`` channel or the official Discord server.
  168. .. |image0| image:: img/assetlib_submit.png