2021-10-25 20:05:28 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
#include "MetasoundVariableDetailCustomization.h"
|
|
|
|
|
|
|
|
|
|
#include "DetailLayoutBuilder.h"
|
|
|
|
|
#include "DetailWidgetRow.h"
|
|
|
|
|
#include "Internationalization/Text.h"
|
|
|
|
|
#include "MetasoundNodeDetailCustomization.h"
|
|
|
|
|
#include "Widgets/DeclarativeSyntaxSupport.h"
|
|
|
|
|
#include "Widgets/Input/SEditableTextBox.h"
|
|
|
|
|
#include "Widgets/Input/SMultiLineEditableTextBox.h"
|
|
|
|
|
#include "Widgets/Text/STextBlock.h"
|
|
|
|
|
|
|
|
|
|
#define LOCTEXT_NAMESPACE "MetaSoundEditor"
|
|
|
|
|
|
|
|
|
|
namespace Metasound
|
|
|
|
|
{
|
|
|
|
|
namespace Editor
|
|
|
|
|
{
|
2021-12-13 18:15:01 -05:00
|
|
|
const FText FMetasoundVariableDetailCustomization::MemberNameText = LOCTEXT("Variable_Name", "Variable");
|
2021-10-25 20:05:28 -04:00
|
|
|
} // namespace Editor
|
|
|
|
|
} // namespace Metasound
|
|
|
|
|
#undef LOCTEXT_NAMESPACE
|