Select Avatar
Describe how to send message to Unity to select loaded avatar
Background
Input parameters
AssetCollectionId
TokenId
Example Usage
function selectAvatar(avatarCollectionId: number, tokenId: string)
{
sendMessage("MessageHandler", "SelectAvatar", JSON.stringify({
avatarCollectionId: avatarCollectionId,
tokenId: tokenId
}))
}Last updated