Getting Started
Requirements
- Unity: 2022.3.59f1
- Quantum 3 AppId created in the Photon Engine Dashboard.
Before diving into this sample, we recommend having a basic understanding of Quantum (see Quantum 3 Intro) and completing the Asteroids Tutorial first.
Download
Version | Release Date | Download |
---|---|---|
3.0.2 | May 05, 2025 | Quantum Starter 3.0.2 |
Running in Editor
To run the sample, set your AppId in the Quantum Hub window (menu Window/Quantum/Quantum Hub).
Each example within Quantum Starter is accessible via its own scene file, which can be opened and played directly. Alternatively, all examples can be launched from the MainMenu scene located at /00_MainMenu/00_MainMenu
.
Upon starting the game, a small game menu appears where players can enter a nickname or a session name (also known as a room name). Clicking the Start Game button will initiate a new game session, or connect the player to an already existing game.
To play the game offline in Local Mode, enable the ForceLocalMode flag on the UIGameMenu GameObject in your chosen scene (for example, on the UI/UIGameMenu object in the 03_Shooter scene).
Gameplay Controls
- Use the
W
,S
,A
,D
keys for movement. - Use the
Shift
key for sprint and theSpace
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 open the game menu during play.
Making a Build
The sample can be built for all desktop platforms (Windows, Mac, Linux) and web platforms. While it is possible to create a mobile version of the sample, please note that touch controls are not currently implemented.
Back to top