7 lines
260 B
C#
7 lines
260 B
C#
|
|
|
|||
|
|
public class RichTextWithCaptionSpeed : TextWithCaptionSpeedParent {
|
|||
|
|
|
|||
|
|
protected override void UpdateText(string currentText, int displayCharacterCount){
|
|||
|
|
text = currentText.Insert(displayCharacterCount, "<color=#ffffff00>") + "</color>";
|
|||
|
|
}
|
|||
|
|
}
|