Initial commit

This commit is contained in:
Gregory Campbell
2019-09-29 19:40:54 -04:00
commit 463a783c7c
3583 changed files with 101769 additions and 0 deletions
@@ -0,0 +1,26 @@
using UnityEngine;
namespace TMPro
{
// Base class inherited by the various TextMeshPro Assets.
[System.Serializable]
public class TMP_Asset : ScriptableObject
{
/// <summary>
/// HashCode based on the name of the asset.
/// </summary>
public int hashCode;
/// <summary>
/// The material used by this asset.
/// </summary>
public Material material;
/// <summary>
/// HashCode based on the name of the material assigned to this asset.
/// </summary>
public int materialHashCode;
}
}