A game about forced loneliness, made by TACStudios
1using System.ComponentModel;
2using UnityEngine;
3using UnityEngine.Timeline;
4
5namespace Timeline.Samples
6{
7 // Uses the USS style defined in `Editor/Stylesheets/Extensions/common.uss`.
8 // See `ReadMe-USS-Styles.md` for more details.
9 [CustomStyle("AnnotationStyle")]
10 [DisplayName("Annotation")]
11 public class AnnotationMarker : Marker // Represents the serialized data for a marker.
12 {
13 public string title;
14 public Color color = new Color(1.0f, 1.0f, 1.0f, 0.5f);
15 public bool showLineOverlay = true;
16 [TextArea(10, 15)] public string description;
17 }
18}