Maze / Library /PackageCache /com.unity.timeline@1.6.5 /Samples~ /Customization /Annotation /AnnotationMarker.cs
| using System.ComponentModel; | |
| using UnityEngine; | |
| using UnityEngine.Timeline; | |
| namespace Timeline.Samples | |
| { | |
| // Uses the USS style defined in `Editor/Stylesheets/Extensions/common.uss`. | |
| // See `ReadMe-USS-Styles.md` for more details. | |
| [] | |
| [] | |
| public class AnnotationMarker : Marker // Represents the serialized data for a marker. | |
| { | |
| public string title; | |
| public Color color = new Color(1.0f, 1.0f, 1.0f, 0.5f); | |
| public bool showLineOverlay = true; | |
| [] public string description; | |
| } | |
| } | |