Basic support for blended scene changes

This commit is contained in:
N00MKRAD
2021-03-19 19:34:48 +01:00
parent 0e95e62979
commit ddf68715fb
10 changed files with 202 additions and 38 deletions

View File

@@ -180,5 +180,10 @@ namespace Flowframes
else
return f.ToString(format).Replace(",", ".");
}
public static string[] Split(this string str, string trimStr)
{
return str.Split(new string[] { trimStr }, StringSplitOptions.None);
}
}
}