Basic Settings
Create an instance as a global variable to use PlayNANOO.
Creating an Instance
using PlayNANOO;
public class PlayNANOOExample : MonoBehaviour
{
// 전역변수 생성
Plugin plugin;
void Awake()
{
// 인스턴스 활성화
plugin = Plugin.GetInstance();
}
}
Please make sure to check!
- All PlayNANOO services can only be used after authentication is completed using the account service.
- If the application is in guest mode, please use guest authentication to obtain user authentication.