Modal Integration

The MONA Modal is the simplest way to interact with the 3D collectibles from your wallet, enabled by the MONA platform.

Basic Usage

  1. Drag and drop the MonaverseModal prefab to the first scene in your game.
  2. Enter your monaApplicationId in the MonaverseManager inspector. You can get this from the MONA Studio site.
  3. Open the modal at any time after Awake

Open Modal

Programmatically open the model using this function call.

MonaverseModal.Open();

You may pass an optional filter function used to filter which 3D collectibles can be used in your game.

// Example: Filter tokens by kind
MonaverseModal.Open(token => token.Kind == "erc1155");