Introduction to Godot’s editor

    When you launch Godot, the first window you’ll see is the Project Manager. It lets you create, remove, import or play game projects.

    In the top-right corner you’ll find a drop-down menu to change the editor’s language.

    image1

    From the Templates tab you can download open source project templates and demos to help you get started faster.

    To create a new project, click the button on the right. Give it a name and choose an empty folder on your computer to save it.

    image3

    Click the Browse button to open Godot’s file browser and pick a location or type the folder’s path in the Project Path field.

    When you see the green tick on the right, it means the engine detects an empty folder and you may click . Godot will create the project for you and open it in the editor.

    The next time you’ll open Godot, you’ll see your new project in the list. Double click on it to open it in the editor.

    image5

    You can import existing projects in a similar way, using the Import button. Locate the folder that contains the project or the file to import and edit it.

    image8

    Welcome to Godot! With your project open, you should see the editor’s interface with the 3D viewport active. You can change the current workspace at the top of the interface. Click on 2D to switch to the 2D workspace.

    Now you should see this interface, with empty docks on the right side.

    image10

    At the top, from left to right, you can see the main menus, the workspaces, and the playtest buttons.

    On the left side, you have the FileSystem dock, where you’ll manage your project files and assets.

    On the right side, you’ll find the Scene dock, which lists the active scene’s content and the Inspector in the bottom right corner.

    image12

    In the center, you have the Toolbar at the top, where you’ll find tools to move, scale or lock your scene’s objects. It changes as you jump to different workspaces.

    The Bottom Panel is the host for the debug console, the animation editor, the audio mixer… They are wide and can take precious space. That’s why they’re folded by default.

    image14

    You can see four workspace buttons at the top: 2D, 3D, Script and AssetLib.

    In the 3D workspace, you can work with meshes, lights, and design levels for 3D games. Press F2 to access it.

    image16

    Notice the text [perspective] under the toolbar, it is a button that opens a list of options related to the 3D viewport.

    Note

    Read for more detail about 3D workspace.

    The Script workspace is a complete code editor with a debugger, rich auto-completion, and built-in code reference. Press F3 to access it, and F4 to search the reference.

    image17

    Finally the AssetLib is a library of Free add-ons, scripts and assets to use in your projects.

    Godot’s interface lives in a single window. You cannot split it across multiple screens although you can work with an external code editor like Atom or Visual Studio for instance.

    Move and resize docks

    Click and drag on the edge of any dock or panel to resize it horizontally or vertically.

    Click the three-dotted icon at the top of any dock to change its location.

    image19