Fix encoding.

This commit is contained in:
2023-03-26 23:25:20 +08:00
parent aafc326f95
commit 824f401b77
203 changed files with 227 additions and 224 deletions

View File

@@ -1,4 +1,4 @@
using Cryville.Common;
using Cryville.Common;
using UnityEngine;
namespace Cryville.Crtr.Browsing {
@@ -18,4 +18,4 @@ namespace Cryville.Crtr.Browsing {
public string DescriptionMain { get; set; }
public string DescriptionSub { get; set; }
}
}
}

View File

@@ -1,4 +1,4 @@
using TMPro;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
@@ -50,4 +50,4 @@ namespace Cryville.Crtr.Browsing {
else resourceBrowser.OnObjectItemClicked(Id.Value);
}
}
}
}

View File

@@ -1,4 +1,4 @@
using Cryville.Common;
using Cryville.Common;
using Cryville.Common.Unity.UI;
using System;
using TMPro;
@@ -67,4 +67,4 @@ namespace Cryville.Crtr.Browsing {
Master.OpenConfig(_id, _data);
}
}
}
}

View File

@@ -1,4 +1,4 @@
using Cryville.Common;
using Cryville.Common;
using Cryville.Crtr.Extension;
using Mono.Cecil;
using System;

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
namespace Cryville.Crtr.Browsing {
public interface IResourceManager<T> {
@@ -14,4 +14,4 @@ namespace Cryville.Crtr.Browsing {
string[] GetSupportedFormats();
IReadOnlyDictionary<string, string> GetPresetPaths();
}
}
}

View File

@@ -1,4 +1,4 @@
using UnityEngine;
using UnityEngine;
using UnityEngine.EventSystems;
namespace Cryville.Crtr.Browsing {

View File

@@ -1,4 +1,4 @@
using System;
using System;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;

View File

@@ -1,4 +1,4 @@
using UnityEngine.UI;
using UnityEngine.UI;
namespace Cryville.Crtr.Browsing {
public class PVPString : PropertyValuePanel {

View File

@@ -1,4 +1,4 @@
using UnityEngine;
using UnityEngine;
using UnityEngine.UI;
namespace Cryville.Crtr.Browsing {
@@ -24,4 +24,4 @@ namespace Cryville.Crtr.Browsing {
GetComponentInParent<ResourceBrowser>().OnPathClicked(_id);
}
}
}
}

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using System.Reflection;
using UnityEngine;
using UnityEngine.UI;
@@ -48,4 +48,4 @@ namespace Cryville.Crtr.Browsing {
_nameLabel.text = (Collapsed ? "+ " : "- ") + Name;
}
}
}
}

View File

@@ -1,4 +1,4 @@
using Cryville.Common.ComponentModel;
using Cryville.Common.ComponentModel;
using System.Reflection;
using UnityEngine;
using UnityEngine.UI;
@@ -73,4 +73,4 @@ namespace Cryville.Crtr.Browsing {
GetValueFromObject();
}
}
}
}

View File

@@ -1,4 +1,4 @@
using System;
using System;
using UnityEngine;
namespace Cryville.Crtr.Browsing {

View File

@@ -1,4 +1,4 @@
using Cryville.Common.Unity;
using Cryville.Common.Unity;
using Cryville.Common.Unity.UI;
using System;
using UnityEngine;

View File

@@ -1,4 +1,4 @@
using Cryville.Common;
using Cryville.Common;
using Cryville.Common.Unity.UI;
using Cryville.Crtr.Config;
using Cryville.Crtr.Extension;

View File

@@ -1,4 +1,4 @@
using UnityEngine;
using UnityEngine;
namespace Cryville.Crtr.Browsing {
public abstract class ResourceBrowserUnit : MonoBehaviour {
@@ -9,4 +9,4 @@ namespace Cryville.Crtr.Browsing {
public virtual void SlideToLeft() { }
public virtual void SlideToRight() { }
}
}
}