本文整理汇总了C#中Mod.Init方法的典型用法代码示例。如果您正苦于以下问题:C# Mod.Init方法的具体用法?C# Mod.Init怎么用?C# Mod.Init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mod
的用法示例。
在下文中一共展示了Mod.Init方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoadMod
public bool LoadMod(string Name)
{
if (Mods.ContainsKey(Name))
return true;
string ModDirectory = Environment.CurrentDirectory.Replace('\\', '/') + "/Mods/";
try
{
foreach (DirectoryInfo Directory in new DirectoryInfo(ModDirectory).GetDirectories())
{
FileInfo[] Path = Directory.GetFiles("*.mod");
if (Path.Length == 0)
{
Debug.Log("Found no mods bundles at '" + Directory.FullName + "'");
}
else if(Path[0].Name == Name + ".mod")
{
FileInfo ModPath = Path[0];
try
{
FileStream TheFile = ModPath.OpenRead();
StreamReader TheReader = new StreamReader(TheFile);
string Content = TheReader.ReadToEnd();
TheReader.Close();
TheFile.Close();
Mod TheMod = new Mod();
TheMod.JSONSource = Content;
TheMod.Path = Directory.FullName.Replace('\\', '/');
if (!TheMod.Init())
{
Debug.Log("Failed to load mod bundle '" + ModPath.FullName + "': Load failure");
return false;
}
Mods.Add(Name, TheMod);
Debug.Log("Loaded mod '" + ModPath.FullName + "'");
return true;
}
catch (Exception e)
{
Debug.Log("Failed to load mod bundle '" + ModPath.FullName + "': " + e.ToString());
return false;
}
}
}
}
catch (Exception e)
{
return false;
}
return false;
}