-
Notifications
You must be signed in to change notification settings - Fork 1
Tools
Feynmen edited this page Jun 18, 2018
·
3 revisions
For work witch Tools you can use the static class ToolsGetter or work directly singletone of tools
Also in Tools folder, you can find Singletone implementation. For simple class, you can be inherited from Singleton where T is your class
public class Singleton<T> where T : new()Or if you need you using MonoBehaviour
public class MonoBehaviourSingleton<T> : MonoBehaviour where T : MonoBehaviour public void ShowToastMessage(string message) public Texture2D Median(Texture2D image)
public int GetMonochromeLevel(Texture2D image)
public Texture2D Monochrome(Texture2D image, int level) public string FindScriptFilePath(string className, string startDir)
public string FindFilePath(string name, string startDir, string ext)
public void FindAllFile(string startDir, string ext, ref List<string> outputFullPaths)List of functions for work with Assembly in core