페이스북 sdk 컴파일 오류 7.5
Unity3D/Problems 2016. 5. 1. 00:32{
resultContainer.ResultDictionary = new Dictionary< string, object >( 1 );
}
resultContainer.ResultDictionary[Constants.CallbackIdKey]
= this.CallbackManager.AddFacebookDelegate(loginCallback);
this.OnLoginComplete(resultContainer);
public virtual void OnInitComplete(ResultContainer resultContainer)
{
this.Initialized = true;
// Wait for the parsing of login to complete since we may need to pull
// in more info about the access token returned
FacebookDelegate<ILoginResult> loginCallback = (ILoginResult result) =>
{
if (this.onInitCompleteDelegate != null)
{
this.onInitCompleteDelegate();
}
};
//resultContainer.ResultDictionary[Constants.CallbackIdKey]
// = this.CallbackManager.AddFacebookDelegate(loginCallback);
//this.OnLoginComplete(resultContainer);
if (resultContainer.ResultDictionary == null)
{
resultContainer.ResultDictionary = new Dictionary<string, object>(1);
}
resultContainer.ResultDictionary[Constants.CallbackIdKey]
= this.CallbackManager.AddFacebookDelegate(loginCallback);
this.OnLoginComplete(resultContainer);
}
'Unity3D > Problems' 카테고리의 다른 글
C# 정확한 Type 의 비교 ( IsAssignableFrom vs is ) (0) | 2016.06.09 |
---|---|
LitJSON Limitations/Warnings (0) | 2016.05.10 |
Google.JarResolver.ResolutionException (0) | 2016.04.05 |
Windows 8.1 , Unity 5.2.4f1 Visual studio 2013 Ultimate 설치시 에러 (0) | 2016.04.04 |
[SOLVED] dllnotfoundexception sqlite3 (0) | 2016.02.17 |