LyricViewRenderHelper.ets 219 B

1234
  1. export function shouldApplyNormalLyricKaraokeEffect(enableWordByWordLyric: boolean, isCurrentLine: boolean,
  2. isPlainTextLyric: boolean): boolean {
  3. return enableWordByWordLyric && isCurrentLine && !isPlainTextLyric
  4. }