Maze / Library /PackageCache /com.unity.timeline@1.6.5 /Samples~ /Customization /Text /TextPlayableBehaviour.cs
| using System; | |
| using UnityEngine; | |
| using UnityEngine.Playables; | |
| namespace Timeline.Samples | |
| { | |
| // Runtime representation of a TextClip. | |
| // The Serializable attribute is required to be animated by timeline, and used as a template. | |
| [] | |
| public class TextPlayableBehaviour : PlayableBehaviour | |
| { | |
| [] | |
| public Color color = Color.white; | |
| [] | |
| public int fontSize = 14; | |
| [] | |
| public string text = ""; | |
| } | |
| } | |