Gamebase SDK for Unity  1.10.0
Toast Gamebase Platform

◆ RemoveUpdateStatusListener()

static void RemoveUpdateStatusListener ( GamebaseCallback.DataDelegate< GamebaseResponse.Launching.LaunchingStatus >  callback)
static

Remove a callback to be invoked when launching status is changed.

Since
Added 1.4.0.
Deprecated:
As of release 1.8.0, use Gamebase.RemoveObserver(observer) method instead.
Parameters
callbackThe callback that will removed.

Example Usage :

{
Gamebase.Launching.RemoveUpdateStatusListener((launchingStatus) =>
{
Debug.Log(string.Format("RemoveUpdateStatusListener launchingStatus code : {0}", launchingStatus.code.ToString()));
Debug.Log(string.Format("RemoveUpdateStatusListener launchingStatus message : {0}", launchingStatus.message));
});
}