New mod: AvatarMotionTweaker

This commit is contained in:
SDraw 2022-08-13 17:00:04 +03:00
parent a6539f46be
commit c4a92bf451
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
23 changed files with 609 additions and 23 deletions

26
ml_amt/Scripts.cs Normal file
View file

@ -0,0 +1,26 @@
using System;
using System.IO;
using System.Reflection;
namespace ml_amt
{
static class Scripts
{
public static string GetEmbeddedScript(string p_name)
{
string l_result = "";
Assembly l_assembly = Assembly.GetExecutingAssembly();
string l_assemblyName = l_assembly.GetName().Name;
try
{
Stream l_libraryStream = l_assembly.GetManifestResourceStream(l_assemblyName + ".resources." + p_name);
StreamReader l_streadReader = new StreamReader(l_libraryStream);
l_result = l_streadReader.ReadToEnd();
}
catch(Exception) { }
return l_result;
}
}
}