project_manager.rst 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. .. _doc_project_manager:
  2. Using the Project Manager
  3. =========================
  4. When you launch Godot, the first window you see is the Project Manager. It lets
  5. you create, remove, import, or play game projects:
  6. .. image:: img/editor_ui_intro_project_manager_01.webp
  7. To change the editors language click on the **Settings** Button in the top right
  8. corner:
  9. .. image:: img/editor_ui_intro_project_manager_02.webp
  10. In Project Manager Settings, you can change the interface **language** from the language
  11. dropdown menu, which is the system default language by default.
  12. You can also change the **theme** of the editor, the **display scale** for different interface
  13. element sizes, and the availability of online functionality using **network mode**.
  14. If network mode is online, Godot will also check and inform you about new versions of Godot.
  15. The **directory naming convention** can also be changed to replace spaces according to the chosen format
  16. when creating folders automatically.
  17. .. image:: img/editor_ui_intro_project_manager_10.webp
  18. .. _doc_creating_and_importing_projects:
  19. Creating and importing projects
  20. -------------------------------
  21. To create a new project:
  22. 1. Click the **Create** button on the top-left of the window.
  23. 2. Give the project a name, then open the file browser using the **Browse** button,
  24. and choose an empty folder on your computer to save the files. Alternatively,
  25. you can enable **Create Folder** option to automatically create a new sub-folder
  26. with the project name, following the directory naming convention set in the
  27. settings. An empty folder will show a green tick on the right.
  28. 3. Select one of the renderers (this can also be changed later).
  29. 4. Click the **Create & Edit** button to create the project folder and open it in the editor.
  30. .. image:: img/editor_ui_intro_project_manager_04.webp
  31. .. note:: You can optionally choose a version control system. Currently, only
  32. `git <https://git-scm.com>`__ is supported and it needs the Godot Git Plugin to be installed,
  33. either manually or using the :ref:`Asset Library <doc_using_assetlib>`. To learn more about the Godot Git Plugin, see its `wiki <https://github.com/godotengine/godot-git-plugin/wiki>`__.
  34. Using the file browser
  35. ~~~~~~~~~~~~~~~~~~~~~~
  36. From the **Create New Project** window, click the **Browse** button to open
  37. Godot's file browser. You can pick a location or type the folder's path in the
  38. **Path** field, after choosing a drive.
  39. Left of the path field on the top row contains arrows to navigate backward and forward through the last
  40. visited locations.
  41. The up arrow navigates to parent folder.
  42. On the right side of the path field, there are buttons to refresh the current folder's contents,
  43. favorite/unfavorite the current folder, and show/hide hidden folders.
  44. Next, the buttons to switch the display type of the folders and files between grid view and list view
  45. are seen.
  46. The last button on the right will create a new folder.
  47. Favorited folders will be displayed on the left side under the **Favorites** section. You can sort the
  48. favorites using the up and down buttons in this section.
  49. Last chosen folders will be listed under the **Recent** list.
  50. .. image:: img/editor_ui_intro_project_manager_05.webp
  51. Opening and importing projects
  52. ------------------------------
  53. The next time you open the Project Manager, you'll see your new project in the
  54. list. Double click on it to open it in the editor.
  55. .. image:: img/editor_ui_intro_project_manager_06.webp
  56. You can similarly import existing projects using the **Import** button. Locate the
  57. folder that contains the project or the **project.godot** file to import and
  58. edit it.
  59. .. image:: img/editor_ui_intro_project_manager_08.webp
  60. Alternatively, it is possible to choose a zip file to be automatically extracted by Godot.
  61. When the folder path is correct, you'll see a green checkmark.
  62. .. image:: img/editor_ui_intro_project_manager_09.webp
  63. .. _doc_project_manager_downloading_demos:
  64. Downloading demos and templates
  65. -------------------------------
  66. From the **Asset Library** tab you can download open source project
  67. templates and demos from the :ref:`Asset Library <toc-learn-features-assetlib>` to help
  68. you get started faster.
  69. The first time you open this tab you'll notice that it's asking you to go online.
  70. For privacy reasons the project manager, and Godot editor, can't access the internet
  71. by default. To enable accessing the internet click the **Go Online** button. This will
  72. also allow project manager to notify you about updates. If you wish to turn this off
  73. in the future go into project manager settings and change **Network Mode** to "Offline"
  74. Now that Godot is connected to the internet you can download a demo or template, to
  75. do this:
  76. 1. Click on its title.
  77. 2. On the page that opens, click the download button.
  78. 3. Once it finished downloading, click install and choose where you want to save
  79. the project.
  80. .. image:: img/editor_ui_intro_project_manager_03.webp
  81. Managing projects with tags
  82. ---------------------------
  83. For users with a lot of projects on one PC it can be a lot to keep track of. To aid
  84. in this Godot allows you to create project tags. To add a tag to a project click on the
  85. project in the project manager, then click on the **Manage Tags** button
  86. .. image:: img/editor_ui_intro_project_manager_11.webp
  87. This will open up the manage project tags window. To add a tag click the plus button.
  88. .. image:: img/editor_ui_intro_project_manager_12.webp
  89. Type out the tag name, and click **OK**. Your project will now have a tag added to it.
  90. These tags can be used for any other project in your project manager.
  91. To show projects with a specific tag only, you can click on the tags or write ``tag:``
  92. and type the tag you would like to search for in the filter bar. To limit the results
  93. using multiple tags, you can click on another tag or add ``tag:`` after
  94. a space and type another tag in the filter bar.
  95. In addition, tags will stay with projects. So if you tag your project, send it to
  96. another machine, and import it into the project manager you will see the tags
  97. you created.
  98. To remove a tag from your project manager it must be removed from all the projects it's
  99. used by. Once that's done close the project manager, open it up again, and the tag should
  100. be gone.