Skip to content
Feynmen edited this page Jun 18, 2018 · 3 revisions

Description

For work witch Tools you can use the static class ToolsGetter or work directly singletone of tools

Features

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

Tools

Android

 public void ShowToastMessage(string message)

ImageFilters

 public Texture2D Median(Texture2D image)
 public int GetMonochromeLevel(Texture2D image)
 public Texture2D Monochrome(Texture2D image, int level)

IO

 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)

Assembly

List of functions for work with Assembly in core

Clone this wiki locally