Launch
Provides FAQ and player 1:1 inquiry services. You can use the 1:1 inquiry service to provide reward services to players.
The 1:1 inquiry supports both guest mode and regular member mode.
Call Information
OpenHelpDeskGuestMode(Action<string> closeCallback) {}
OpenHelpDeskPlayerMode(string userId, Action<string> closeCallback) {}
Call Details
| Parameter | Description | Type |
|---|---|---|
| userId | Player User ID | string |
| closeCallback | WebView callback | Action<string> |
Sample Code
using PlayNANOO;
public class PlayNANOOExample : MonoBehaviour
{
Plugin plugin;
void Awake()
{
plugin = Plugin.GetInstance();
// 비회원 모드 요청 시
plugin.OpenHelpDeskGuestMode((response) => {
Debug.Log("Close Callback");
});
// 일반 회원 모든 요청 시
plugin.OpenHelpDeskPlayerMode("UserId", (response) => {
Debug.Log("Close Callback");
});
}
}