index.rst 880 B

1234567891011121314151617181920212223242526272829
  1. :allow_comments: False
  2. .. _doc_step_by_step:
  3. Step by step
  4. ============
  5. This series builds upon the :ref:`Introduction to Godot
  6. <toc-learn-introduction>` and will get you started with the editor and the
  7. engine. You will learn more about nodes and scenes, code your first classes with
  8. GDScript, use signals to make nodes communicate with one another, and more.
  9. The following lessons are here to prepare you for :ref:`doc_your_first_2d_game`, a
  10. step-by-step tutorial where you will code a game from scratch. By the end of it,
  11. you will have the necessary foundations to explore more features in other
  12. sections. We also included links to pages that cover a given topic in-depth
  13. where appropriate.
  14. .. toctree::
  15. :maxdepth: 1
  16. :name: toc-learn-step_by_step
  17. nodes_and_scenes
  18. instancing
  19. scripting_languages
  20. scripting_first_script
  21. scripting_player_input
  22. signals