Skip to content

Commit

Permalink
Always pass plain text to the TextTyper.
Browse files Browse the repository at this point in the history
  • Loading branch information
toolness committed Apr 30, 2016
1 parent d5dec5b commit 05b65e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Scripts/Main/States/Game/View/ContentView.cs
Expand Up @@ -46,7 +46,7 @@ public class ContentView : StoryElementView {
textTyper = new TypedText();
textTyper.OnTypeText += OnTypeText;
textTyper.OnCompleteTyping += CompleteTyping;
textTyper.TypeText(content, textTyperSettings);
textTyper.TypeText(richText.plainText, textTyperSettings);
}

void OnTypeText (string newText) {
Expand Down

0 comments on commit 05b65e5

Please sign in to comment.