You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then when creating a view, we try in class ViewPresenter.cs function GetViewTypeData:
if(_viewTypeDataDictionary==null){
LoadViewTypeDataDictionary();}ViewTypeDataviewTypeData;if(!_viewTypeDataDictionary.TryGetValue(viewTypeName,out viewTypeData)){
Debug.LogError(String.Format("[MarkLight] Can't find view type \"{0}\".", viewTypeName));returnnull;}
So I believe this was recently introduced for performance improvements, but _viewTypeDataDictionary is not going to have all the records as ViewTypeDataList in both need to be synchronised.
The text was updated successfully, but these errors were encountered:
This doesn't work:
In class
ViewData.cs
, functionLoadViewXuml
, we are:Then when creating a view, we try in class
ViewPresenter.cs
functionGetViewTypeData
:So I believe this was recently introduced for performance improvements, but
_viewTypeDataDictionary
is not going to have all the records asViewTypeDataList
in both need to be synchronised.The text was updated successfully, but these errors were encountered: