41 lines
1.1 KiB
C++
41 lines
1.1 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Channels/IntegerChannelKeyProxy.h"
|
|
|
|
#include "Channels/MovieSceneIntegerChannel.h"
|
|
#include "Channels/MovieSceneChannelHandle.h"
|
|
|
|
#include "HAL/PlatformCrt.h"
|
|
|
|
struct FPropertyChangedEvent;
|
|
|
|
void UIntegerChannelKeyProxy::Initialize(FKeyHandle InKeyHandle, TMovieSceneChannelHandle<FMovieSceneIntegerChannel> InChannelHandle, TWeakObjectPtr<UMovieSceneSection> InWeakSection)
|
|
{
|
|
KeyHandle = InKeyHandle;
|
|
ChannelHandle = InChannelHandle;
|
|
WeakSection = InWeakSection;
|
|
}
|
|
|
|
void UIntegerChannelKeyProxy::PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent)
|
|
{
|
|
int32 NewValue = Value;
|
|
|
|
if (ChannelHandle.GetMetaData() != nullptr && ChannelHandle.GetMetaData()->bInvertValue)
|
|
{
|
|
NewValue = -NewValue;
|
|
}
|
|
|
|
Super::PostEditChangeProperty(PropertyChangedEvent);
|
|
|
|
OnProxyValueChanged(ChannelHandle, WeakSection.Get(), KeyHandle, NewValue, Time);
|
|
}
|
|
|
|
void UIntegerChannelKeyProxy::UpdateValuesFromRawData()
|
|
{
|
|
RefreshCurrentValue(ChannelHandle, KeyHandle, Value, Time);
|
|
|
|
if (ChannelHandle.GetMetaData() != nullptr && ChannelHandle.GetMetaData()->bInvertValue)
|
|
{
|
|
Value = -Value;
|
|
}
|
|
} |