TrackerSettingsTemplateSO.cs 492 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using Imagine.WebAR;
  4. using UnityEngine;
  5. namespace Imagine.WebAR{
  6. // [CreateAssetMenu(fileName = "TrackerSettingsTemplate", menuName = "ImagineWebAR/TrackerSettingsTemplate", order = 1)]
  7. public class TrackerSettingsTemplateSO : ScriptableObject
  8. {
  9. public string label;
  10. public Color color = Color.black;
  11. [TextArea(3,10)] public string description;
  12. public TrackerSettings settings;
  13. }
  14. }