initial commit

This commit is contained in:
klemek
2020-12-10 13:18:02 +01:00
commit 67f7123f4d
68 changed files with 5029 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
using System.Linq;
using UnityEngine;
public static class Utils
{
#region String Utils
public static string RandomString(int length)
{
const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
return new string(Enumerable.Repeat(chars, length)
.Select(s => s[Random.Range(0, s.Length)]).ToArray());
}
#endregion
#region Unity Utils
public static void RandomName(string prefix, GameObject obj)
{
obj.name = $"{prefix}_{RandomString(5)}";
}
#endregion
}