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
callback
The callback that will removed.
Example Usage :
public
void
RemoveUpdateStatusListener
()
{
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));
});
}
Toast
Gamebase
Gamebase
Launching
Generated by
1.8.14