Added tutorials button in top bar of editor & sub-editors

Icon is only visible if content is available for the editor in question.
Split editor settings into two groups - one is persistent settings and one is progress/state.
Tutorials record their dismissed state, so users can permenantly disable the 'nag' for a particular tutorial.
Tutorial content now solidifies when the mouse is hovered over it, so it can be made easier to read.
Fixed crash on startup if an intro tutorial was displaying rich text.
Also fixed crash for TTP# 345094, where a zero-length tutorial was being accessed.

[CL 2275934 by Thomas Sarkanen in Main branch]
This commit is contained in:
Thomas Sarkanen
2014-08-28 06:22:40 -04:00
committed by UnrealBot
parent 59ebc5b08d
commit 8dc16308f3
25 changed files with 678 additions and 169 deletions

View File

@@ -186,7 +186,7 @@ void STutorialEditableText::Construct(const FArguments& InArgs)
RichTextMarshaller->AppendInlineDecorator(FHyperlinkDecorator::Create(TEXT("tutorial"), OnTutorialLinkClicked));
RichTextMarshaller->AppendInlineDecorator(FHyperlinkDecorator::Create(TEXT("code"), OnCodeLinkClicked));
RichTextMarshaller->AppendInlineDecorator(FHyperlinkDecorator::Create(TEXT("asset"), OnAssetLinkClicked));
RichTextMarshaller->AppendInlineDecorator(FTextStyleDecorator::Create(&TextStyles));
RichTextMarshaller->AppendInlineDecorator(FTextStyleDecorator::Create(TextStyles));
this->ChildSlot
[