Getting Started

Requirements

Before diving into this sample, we recommend having a basic understanding of Fusion in Godot.
See the Quick Start Guide for an introduction.

Download

VersionRelease DateDownload
3.0.04月 09, 2026Fusion Godot Starter

Running in Godot

To run the sample, first set your Fusion App Id in Project > Project Settings > Fusion > Connection > App Id.

External GDExtension settings such as the Fusion section will only show up if you use the search field or enable "Advanced Settings" in the Project Settings window.

Each example within Fusion Starter is accessible via its own scene file, which can be opened and played directly (shortcut F6). Alternatively, all examples can be launched from the menu.tscn scene located in the project root.

Main Menu Scene

Upon starting the game, a connection menu appears where players can enter a nickname and a room name. Clicking the Connect button will initiate a new game session, or connect the player to an already existing game in that room.

Connection Menu

Press the Esc key during gameplay to reopen the connection menu. Use the Back to Menu button to return to the main menu scene.

Gameplay Controls

  • Use the W, S, A, D keys for movement.
  • Use the Space key for jump.
  • Use the mouse for looking around.
  • Use Left mouse button for weapon fire (only in the Shooter example)
  • Press the Esc key to toggle the connection menu during play.

Making a Build and Testing

The sample can be built for all desktop platforms (Windows, Mac, Linux) and web platforms.

For quick multiplayer testing without creating a build, use Godot's Multiple Run Instances feature to launch several game instances directly from the editor.

Back to top