跳转到主要内容

启动

提供常见问题及玩家1:1咨询服务。 通过1:1咨询服务,可以为玩家提供补偿服务。

1:1咨询支持非会员模式和普通会员模式。

调用信息

OpenHelpDeskGuestMode(Action<string> closeCallback) {}
OpenHelpDeskPlayerMode(string userId, Action<string> closeCallback) {}

调用详细信息

参数说明类型
userId玩家 User IDstring
closeCallbackWebView 回调Action<string>

示例代码

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");
});
}
}