GO
SOFTWARE

Godot Engine

Godot Engine 4.7.2 is a cross-platform 2D and 3D game engine. This page covers the desktop editor, scenes, nodes, scripts, export templates and the boundary between editable project files and a packaged build.

Version 4.7.2Windows x64Windows arm64macOS 通用Linux x64Linux arm64MIT

What Godot provides

Godot Engine 4.7.2 is an editor and runtime for 2D, 3D and interactive applications. Its workflow is organized around nodes, scenes, scripts, imported assets and platform export presets. It suits learning, prototypes, independent projects and tool-like applications, while larger releases still need asset management, performance budgets and a repeatable delivery process.

Editor, templates and project boundaries

The standard editor, a Mono or C# build and the export templates are separate pieces. A project that opens in the editor is not the same thing as a portable release package: scenes, scripts, external assets, plugins, fonts, import data and export presets may all be required to continue editing or reproduce a build.

Release and maintenance checks

Pin the renderer, window settings, input map and target architecture before a project grows. Third-party assets and plugins may have independent terms. Run a clean export for every target platform, start it without the editor and record the engine, plugin, template and asset versions. Review date: 2026-08-23.

SAVE TO CLOUD

Save to your cloud drive

Open the cloud drive to get the file directly, or save it for convenient access on another device.

Links checked 2026-08-06
Save first, access when you need itOn desktop, scan with the matching cloud-drive app. On mobile, tap the save button.
GUIDE

Godot Engine 4.7.2 installation and first-scene guide

Create a minimal 2D scene with one input response, then move through project setup, node organization, script attachment, running, export-template checks and a clean test export.

Before you start

  • Choose a Windows, macOS or Linux editor package and reserve a separate writable project directory and cache location.
  • Keep a recoverable copy of project files and source assets; do not store the only project copy in a temporary download folder.
  • Decide the first target platform and renderer before installing export templates or committing assets.
01

Installation steps

  1. 01

    Extract and start the editor

    Extract the package for the target platform to a stable directory, launch the editor and confirm that the project manager can create and reopen a test project.

  2. 02

    Install matching export templates

    Use the editor template manager to install only the templates needed for version 4.7.2 and the selected target platforms.

  3. 03

    Create a versioned project

    Keep project settings, scenes, scripts, assets and import data in a predictable structure, then create a version-control or compressed recovery copy.

02

Quick start

  1. 01

    Build a root scene

    Start a 2D scene with Node2D or a suitable root node, add visible and collision nodes, and name the nodes according to their role.

  2. 02

    Attach a script and run

    Attach a script to the root node, implement a small input or position change, set the main scene and inspect the earliest debug error if the run fails.

  3. 03

    Export a clean test build

    Create an export preset, set the application identifier and output directory, export a development build and test it in a directory that has no editor cache.

Usage tips

  • Keep scenes, scripts, source assets, plugins and import data together when a project must be migrated; an exported package is not an editable backup.
  • Review the independent license of every plugin, font, asset and runtime dependency before distributing the project.
  • Keep online-service tokens, test accounts and production keys out of scripts, project settings and shared archives.
Troubleshooting and uninstall

Why does the project say that no main scene is set?

Set a main scene in project settings or run the current scene directly, then check the scene path and letter case against the project reference.

Why is the exported build black or missing assets?

Confirm the export-template version, wait for imports to finish, check that assets are referenced by the project and verify the renderer and graphics driver on the target device.

  1. Archive the project and template recordSave scenes, scripts, source assets, plugin inventory, export presets and engine versions, then reopen a copy to confirm it remains recoverable.
  2. Remove the editor and cacheDelete the extracted editor directory and clean user cache locations as appropriate; keep the project folder and asset archive separate.
FAQ

Frequently asked questions

Is the editor enough to export a game?

The editor and export templates are separate. Install the template matching 4.7.2 and the target platform, then verify a clean export before treating the build as distributable.

Should a new project use GDScript or C#?

GDScript is closely integrated with the node workflow and is a practical starting point. C# can fit an existing .NET toolchain, but target-platform support and runtime configuration should be checked first.

Does an exported package preserve the editable project?

No. Preserve scenes, scripts, original assets, plugins, import data and export presets separately so the project can be edited and rebuilt.