SDL3 Oyun Programlama ve Godot Oyun Motoru sayfalarımız yayında...

Ana sayfa > Oyun programlama > Godot game engine > Creating a proje project

Creating a proje project

To create a two-dimensional Godot project, perform the following steps in order:

1. Open the Godot game engine development environment by running the Godot_v4.3-stable_win64.exe file. Click the Create New Project button.

2. In the window that appears, edit the data as follows to create a project that will work on desktop, mobile and web platforms and click the Create & Edit button.

3. In the window that appears, click on the 2D Scene button to create the root Node value named Node2D.

4. The Godot development environment image will look like this:

5. Under res://scenes, which contains only the icon.svg file, create 3 directories named below from the menu that opens when we right-click.

  • assets
  • scenes
  • scripts

6. Change the Node2D name to Game from the menu that opens when we right-click.

7. In the window that opens with the Ctrl-S keys, save it as a game.tscn file in the res://scenes directory.

8. As a result, the environment image will be as follows.