Getting the name of a track chunk #162
Answered
by
melanchall
dreammixgames
asked this question in
Q&A
-
Hey. Is there any way to get the name of a track chunk, like these above^ |
Beta Was this translation helpful? Give feedback.
Answered by
melanchall
Feb 5, 2022
Replies: 2 comments
-
Hi, Just take var trackName = trackChunk.Events.OfType<SequenceTrackNameEvent>().FirstOrDefault()?.Text; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
melanchall
-
Hey Melanchall. I never saw this until now. Just wanted to say thanks! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Just take
SequenceTrackNameEvent
event from a track chunk's events, and then use itsText
property: