Lib.cs 434 B

12345678910111213141516
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. public class Lib
  5. {
  6. public static Color Pink = new Color(1, 60/255f, 60/255f, 1);
  7. public static Color Orange = new Color(233/255f, 63/255f, 20/255f, 1);
  8. public static Color LightGray = new Color(165/255f, 192/255f, 200/255f, 1);
  9. public static Material GrayMat
  10. {
  11. get { return ManaReso.Load<Material>("GrayMat", Folder.UI); }
  12. }
  13. }