をクリックしたとき、私は
public void teststr()
{
if (!FB.IsInitialized) {
// Initialize the Facebook SDK
FB.Init(InitCallback, OnHideUnity);
} else {
// Already initialized, signal an app activation App Event
}
}
private void InitCallback()
{
if (FB.IsInitialized) {
// ...
} else {
}
}
private void OnHideUnity (bool isGameShown)
{
if (!isGameShown) {
// Pause the game - we will need to hide
Time.timeScale = 0;
} else {
// Resume the game - we're getting focus again
Time.timeScale = 1;
}
}
teststr機能火災解決しました!
あなたはlogcatに示されているエラーを貼り付けることができます私はFB.Init(this.InitCallback, this.OnHideUnity);
代わりのFB.Init(InitCallback, OnHideUnity);
を使うのか? –