Available in the Gaming / Industries Circle
quantum | v2 switch to V1  

Gameplay and Testing

Gameplay And Testing

For local testing purposes, run the GameScene in the editor. During local testing, it is possible to change between players by pressing 1 and 2 on the numeric keyboard/numpad.

For online multiplayer, start the game from StartScene or MainScene.

トップに戻る
 

Scene Management

The Tower Rush sample contains a simple scene management system responsible for changing Unity scenes and showing the Loading Screen. A couple of example scenes included are the MainScene, IntroScene, LoadingScene and GameScene.

トップに戻る
 

Game Options

Game Options is a code utility used for loading and saving of user options like sounds and music volume.

トップに戻る
 

Cheat Manager

The Cheat Manager is a simple editor window with overrides for different gameplay features. For instace, it contains overrides for the player's card deck so you can specify cards to be tested easily at specific levels.

It is also possible to create and manage different profiles.

トップに戻る
 

Quantum Services

The Quantum Services are used for handling the connection to the Photon servers and matchmaking.

トップに戻る
 

Utilities

  • ListPool : List<T> pooling with statistics containing information about Get, Returns, last access time and size
  • WaitFor : optimised usage of yield instructions like WaitForSeconds
  • FPSMeter
  • DictionaryFile : similar to PlayerPrefs, can be used to save custom data to the application's data folder. Advantage is that this data can be easily downloaded from the device and modified for debug purposes. In the release environment ciphering is enabled.
  • Signals : static pub/sub mechanism. Mostly used for UI listening gameplay events

ドキュメントのトップへ戻る