Exemplo n.º 1
0
 protected virtual void DrawRuntimeItems()
 {
     tempGraphObj.Update();
     if (1 << selected == (int)LoadType.DirectLink)
     {
         prefabInfoList.DoLayoutList();
     }
     else if (1 << selected == (int)LoadType.AssetBundle)
     {
         var rect = GUILayoutUtility.GetRect(EditorGUIUtility.currentViewWidth, EditorGUIUtility.singleLineHeight);
         DrawBundleCreateRule(rect, bundleCreateRuleProp);
         bundleInfoList.DoLayoutList();
     }
     else if (1 << selected == (int)LoadType.Resources)
     {
         resourceInfoList.DoLayoutList();
     }
     tempGraphObj.ApplyModifiedProperties();
 }