This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This file is my contribution to use the Lean Localization asset with TextMeshProUGUI, | |
I'm not the owner of the main asset, All copyrights are their respective owners. | |
Please check the original license of the package if you have any questions regarding that. | |
You can get the asset free on the assetstore: | |
http://www.assetstore.unity3d.com/#!/content/28504 | |
22.11.2017 K.S.A | |
github.com/ksnnacar | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using UnityEngine; | |
/// <summary> | |
/// This is a generic Singleton implementation for Monobehaviours. | |
/// Create a derived class where the type T is the script you want to "Singletonize" | |
/// Upon loading it will call DontDestroyOnLoad on the gameobject where this script is contained | |
/// so it persists upon scene changes. | |
/// </summary> | |
/// <remarks> |