您好我有unity3d和最新的Facebook SDKunity3d 4.3 SDK的Facebook登錄
我已經下載了示例項目,但我有一個問題,當我啓動項目,然後點擊登錄,統一立即顯示此圖像:
,我希望我在mainmenu.cs得到一個錯誤的這部分代碼
if (FB.IsLoggedIn)
{
string panelText = "Welcome ";
if (GameStateManager.Username != null) panelText += GameStateManager.Username + "!";
else panelText += "Smasher!"; //I GOT THIS ELSE BLOCK !
if (GameStateManager.UserTexture != null)
GUI.DrawTexture((new Rect(8,10, 150, 150)), GameStateManager.UserTexture);
GUI.Label((new Rect(179 , 11, 287, 160)), panelText, MenuSkin.GetStyle("text_only"));
}
這是我gamestatemanage r.username是空的...我只想知道爲什麼我的gamestatemanager.username爲空,如何獲得一些數據來填補..我已經按照步驟填充gamestatemanager.username在這link哪裏是我的錯誤btw?任何人都可以幫忙
你把你的Facebook應用程序ID? Unity編輯器中也是這樣嗎?編輯器中沒有實際的登錄信息。 –