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
- Drag and drop the MonaverseModal prefab to the first scene in your game.
- Enter your
monaApplicationId
in the MonaverseManager inspector. You can get this from the MONA Studio site. - 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");
Updated 5 months ago