mirror of
https://github.com/DCFApixels/DragonECS-Unity.git
synced 2025-09-17 17:34:34 +08:00
fix naming
This commit is contained in:
parent
9cabcf13da
commit
74d6ecb81e
@ -162,7 +162,7 @@ namespace DCFApixels.DragonECS.Unity.RefRepairer.Editors
|
||||
{
|
||||
const string LIST_EMPTY_MESSAGE = "List of Missings is Empty";
|
||||
const string COLLECT_BUTTON = "Collect Missings";
|
||||
if (_missingRefContainer.IsEmplty)
|
||||
if (_missingRefContainer.IsEmpty)
|
||||
{
|
||||
GUILayout.Label("", GUILayout.ExpandHeight(true), GUILayout.ExpandWidth(true));
|
||||
using (EcsGUI.SetFontSize(14))
|
||||
@ -193,7 +193,7 @@ namespace DCFApixels.DragonECS.Unity.RefRepairer.Editors
|
||||
_missingRefContainer.Collect();
|
||||
_cachedMissingsResolvingDatas = _missingRefContainer.MissingsResolvingDatas.Values.ToArray();
|
||||
InitList();
|
||||
if (_missingRefContainer.IsEmplty)
|
||||
if (_missingRefContainer.IsEmpty)
|
||||
{
|
||||
_isNoFound = true;
|
||||
}
|
||||
|
@ -18,7 +18,7 @@ namespace DCFApixels.DragonECS.Unity.RefRepairer.Editors
|
||||
public CollectedAssetMissingRecord[] collectedMissingTypesBuffer = null;
|
||||
public int collectedMissingTypesBufferCount = 0;
|
||||
public readonly Dictionary<TypeData, MissingsResolvingData> MissingsResolvingDatas = new Dictionary<TypeData, MissingsResolvingData>();
|
||||
public bool IsEmplty
|
||||
public bool IsEmpty
|
||||
{
|
||||
get { return collectedMissingTypesBufferCount == 0; }
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ namespace DCFApixels.DragonECS.Unity.RefRepairer.Editors
|
||||
}
|
||||
public static void RepaieAsset(MissingRefContainer container)
|
||||
{
|
||||
if (container.IsEmplty) { return; }
|
||||
if (container.IsEmpty) { return; }
|
||||
|
||||
for (int i = 0; i < container.collectedMissingTypesBufferCount; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user