parent
4f692fc6c4
commit
e544b0f199
|
@ -16,6 +16,13 @@ namespace ModLoader
|
||||||
//UnityEngine.Debug.Log("[BWML]" + output);
|
//UnityEngine.Debug.Log("[BWML]" + output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void DebugLog(string output)
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
Log(output);
|
||||||
|
#endif // DEBUG
|
||||||
|
}
|
||||||
|
|
||||||
static void FindMods(DirectoryInfo path)
|
static void FindMods(DirectoryInfo path)
|
||||||
{
|
{
|
||||||
FileInfo[] files = path.GetFiles("*.dll");
|
FileInfo[] files = path.GetFiles("*.dll");
|
||||||
|
@ -27,7 +34,7 @@ namespace ModLoader
|
||||||
Type[] modType = modDll.GetTypes();
|
Type[] modType = modDll.GetTypes();
|
||||||
foreach (Type t in modType)
|
foreach (Type t in modType)
|
||||||
{
|
{
|
||||||
Log("Found type in " + file.Name + ": " + t.Name);
|
DebugLog("Found type in " + file.Name + ": " + t.Name);
|
||||||
if (t.IsClass && t.IsSubclassOf(typeof(MonoBehaviour)))
|
if (t.IsClass && t.IsSubclassOf(typeof(MonoBehaviour)))
|
||||||
{
|
{
|
||||||
loadedMods.Add(modObjects.AddComponent(t), file);
|
loadedMods.Add(modObjects.AddComponent(t), file);
|
||||||
|
@ -69,8 +76,8 @@ namespace ModLoader
|
||||||
string modsPath = Path + "\\Mods";
|
string modsPath = Path + "\\Mods";
|
||||||
string assetsPath = modsPath + "\\Assets";
|
string assetsPath = modsPath + "\\Assets";
|
||||||
|
|
||||||
Log("Dll dir: "+Path);
|
DebugLog("Dll dir: "+Path);
|
||||||
Log("Mods dir: "+modsPath);
|
DebugLog("Mods dir: "+modsPath);
|
||||||
|
|
||||||
if (!Directory.Exists(modsPath))
|
if (!Directory.Exists(modsPath))
|
||||||
{
|
{
|
||||||
|
@ -90,8 +97,7 @@ namespace ModLoader
|
||||||
FindMods(d);
|
FindMods(d);
|
||||||
foreach(Component mod in loadedMods.Keys)
|
foreach(Component mod in loadedMods.Keys)
|
||||||
{
|
{
|
||||||
Log(mod.name);
|
Log("Mod \"" + mod.name + "\" loaded from \"" + loadedMods[mod].Name + "\"");
|
||||||
Log("Location: "+ loadedMods[mod].Name);
|
|
||||||
}
|
}
|
||||||
Log("All Mods have been Loaded!");
|
Log("All Mods have been Loaded!");
|
||||||
modObjects.AddComponent<ModGUI.ModGUI>();
|
modObjects.AddComponent<ModGUI.ModGUI>();
|
||||||
|
|
Loading…
Reference in a new issue