You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
COPY from //Dev-Anim to //Dev-Main
#rb: none #fyi: Laurent.Delayen, Thomas.Sarkanen [CL 11088765 by Lina Halper in Main branch]
This commit is contained in:
+1
-1
@@ -23,7 +23,7 @@ public class AudioModulationEditor : ModuleRules
|
||||
"AudioEditor",
|
||||
"AudioModulation",
|
||||
"CurveEditor",
|
||||
"Persona"
|
||||
"EditorWidgets"
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
+4
-4
@@ -16,7 +16,7 @@
|
||||
|
||||
|
||||
FModCurveEditorModel::FModCurveEditorModel(FRichCurve& InRichCurve, UObject* InOwner, FName InControlName, EModSettingsOutputEditorCurveSource InSource, UCurveFloat* InSharedCurve)
|
||||
: FRichCurveEditorModel(&InRichCurve, InOwner)
|
||||
: FRichCurveEditorModelRaw(&InRichCurve, InOwner)
|
||||
, Output(EModSettingsEditorCurveOutput::Control)
|
||||
, Source(InSource)
|
||||
{
|
||||
@@ -25,7 +25,7 @@ FModCurveEditorModel::FModCurveEditorModel(FRichCurve& InRichCurve, UObject* InO
|
||||
}
|
||||
|
||||
FModCurveEditorModel::FModCurveEditorModel(FRichCurve& InRichCurve, UObject* InOwner, EModSettingsEditorCurveOutput InOutput, EModSettingsOutputEditorCurveSource InSource, UCurveFloat* InSharedCurve)
|
||||
: FRichCurveEditorModel(&InRichCurve, InOwner)
|
||||
: FRichCurveEditorModelRaw(&InRichCurve, InOwner)
|
||||
, Output(InOutput)
|
||||
, Source(InSource)
|
||||
{
|
||||
@@ -97,7 +97,7 @@ void FModCurveEditorModel::Refresh(EModSettingsEditorCurveOutput InCurveOutput,
|
||||
|
||||
case EModSettingsOutputEditorCurveSource::Expression:
|
||||
{
|
||||
bKeyDrawEnabled = 0;
|
||||
bKeyDrawEnabled = false;
|
||||
ShortDisplayName = FText::Format(LOCTEXT("ModulationOutputCurveExpressionDisplayName", "{0} (Expression)"), ShortNameBase);
|
||||
}
|
||||
break;
|
||||
@@ -105,7 +105,7 @@ void FModCurveEditorModel::Refresh(EModSettingsEditorCurveOutput InCurveOutput,
|
||||
case EModSettingsOutputEditorCurveSource::Unset:
|
||||
default:
|
||||
{
|
||||
bKeyDrawEnabled = 0;
|
||||
bKeyDrawEnabled = false;
|
||||
ShortDisplayName = FText::Format(LOCTEXT("ModulationOutputCurveUnsetDisplayName", "{0} (Shared - Unset)"), ShortNameBase);
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -137,7 +137,7 @@ public:
|
||||
};
|
||||
|
||||
|
||||
class FModCurveEditorModel : public FRichCurveEditorModel
|
||||
class FModCurveEditorModel : public FRichCurveEditorModelRaw
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user