General Settings
Creates a global variable instance for using PlayNANOO.
Create Instance
using PlayNANOO;
public class PlayNANOOExample : MonoBehaviour
{
// Create a global variable
Plugin plugin;
void Awake()
{
// Activate instance
plugin = Plugin.GetInstance();
}
}
Please ensure the following
- All services of PlayNANOO can be used only after authentication via the account service.
- If your app operates in a unregistered mode, please use no authentication to acquire registered user verification.