introduction_to_godot.rst 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. Introduction to Godot
  2. =====================
  3. This article is here to help you figure out whether Godot might be a good fit
  4. for you. We will introduce some broad features of the engine to give you a feel
  5. for what you can achieve with it and answer questions such as "what do I need to
  6. know to get started?".
  7. This is by no means an exhaustive overview. We will introduce many more features
  8. in this getting started series.
  9. What is Godot?
  10. --------------
  11. Godot is a general-purpose 2D and 3D game engine designed to support all sorts
  12. of projects. You can use it to create games or applications you can then release
  13. on desktop or mobile, as well as on the web.
  14. You can also create console games with it, although you either need strong
  15. programming skills or a developer to port the game for you.
  16. .. note:: The Godot team can't provide an open-source console export due to the
  17. licensing terms imposed by console manufacturers. Regardless of the
  18. engine you use, though, releasing games on consoles is always a lot of
  19. work. You can read more on that here: :ref:`doc_consoles`.
  20. What can the engine do?
  21. -----------------------
  22. Godot was initially developed in-house by an Argentinan game studio. Its
  23. development started in 2001, and the engine was rewritten and improved
  24. tremendously since its open-source release in 2014.
  25. Some examples of games created with Godot include Ex-Zodiac and Helms of Fury.
  26. .. image:: img/introduction_ex_zodiac.png
  27. .. image:: img/introduction_helms_of_fury.jpg
  28. As for applications, the open-source pixel art drawing program Pixelorama is
  29. powered by Godot, and so is the voxel RPG creator RPG in a box.
  30. .. image:: img/introduction_rpg_in_a_box.png
  31. You can find many more examples in the official showcase videos:
  32. - `April 2020 desktop and console showcase`_
  33. - `April 2020 mobile showcase`_
  34. How does it work and look?
  35. --------------------------
  36. Godot comes with a fully-fledged game editor with integrated tools to answer the
  37. most common needs. It includes a code editor, an animation editor, a tilemap
  38. editor, a shader editor, a debugger, a profiler, and more.
  39. .. image:: img/introduction_editor.png
  40. The team strives to offer a feature-rich game editor with a consistent user
  41. experience. While there is always room for improvement, the user interface keeps
  42. getting refined.
  43. Of course, if you prefer, you can work with external programs. We officially
  44. support importing 3D scenes designed in Blender_ and maintain plugins to code in
  45. VSCode_ and Emacs_ for GDScript and C#. We also support Visual Studio for C# on
  46. Windows.
  47. .. image:: img/introduction_vscode.png
  48. Programming languages
  49. ---------------------
  50. Let's talk about the available programming languages.
  51. You can code your games using :ref:`GDScript <toc-learn-scripting-gdscript>`, a
  52. Godot-specific and tightly integrated language with a lightweight syntax, or
  53. :ref:`C# <toc-learn-scripting-C#>`, which is popular in the games industry.
  54. These are the two main scripting languages we support.
  55. Godot also supports a node-based visual programming language named
  56. :ref:`VisualScript <toc-learn-scripting-visual_script>`.
  57. With the :ref:`GDNative <toc-tutorials-gdnative>` technology, you can also write
  58. gameplay or high-performance algorithms in C or C++ without recompiling the
  59. engine. You can use this technology to integrate third-party libraries and other
  60. Software Development Kits (SDK) in the engine.
  61. Of course, you can also directly add modules and features to the engine, as it's
  62. completely free and open-source.
  63. .. seealso:: These are the five officially supported programming languages. The
  64. community maintains support for many more. For more information,
  65. see :ref:`GDNative third-party bindings
  66. <doc_what_is_gdnative_third_party_bindings>`.
  67. What do I need to know to use Godot?
  68. ------------------------------------
  69. Godot is a feature-packed game engine. With its thousands of features, there is
  70. a lot to learn. To make the most of it, you need good programming foundations.
  71. While we try to make the engine accessible, you will benefit a lot from knowing
  72. how to think like a programmer first.
  73. Godot relies on the object-oriented programming paradigm. Being comfortable with
  74. concepts such as classes and objects will help you code efficiently in it.
  75. If you are entirely new to programming, we recommend following the `CS50 open
  76. courseware`_ from Harvard University. It's a great free course that will teach
  77. you everything you need to know to be off to a good start. It will save you
  78. countless hours and hurdles learning any game engine afterward.
  79. .. note:: In CS50, you will learn multiple programming languages. Don't be
  80. afraid of that: programming languages have many similarities. The
  81. skills you learn with one language transfer well to others.
  82. We will provide you with more Godot-specific learning resources in
  83. :ref:`doc_learning_new_features`.
  84. In the next part, you will get an overview of the engine's essential concepts.
  85. .. _Blender: https://www.blender.org/
  86. .. _VSCode: https://github.com/godotengine/godot-vscode-plugin
  87. .. _Emacs: https://github.com/godotengine/emacs-gdscript-mode
  88. .. _April 2020 desktop and console showcase: https://youtu.be/UEDEIksGEjQ
  89. .. _April 2020 mobile showcase: https://youtu.be/AIapugketbs
  90. .. _CS50 open courseware: https://cs50.harvard.edu/x/2020/