13 lines
345 B
C++
13 lines
345 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Editor/PropertyEditorTestObject.h"
|
|
|
|
bool UPropertyEditorTestObject::CanEditChange(const FProperty* InProperty) const
|
|
{
|
|
if (InProperty->GetFName() == GET_MEMBER_NAME_CHECKED(UPropertyEditorTestObject, DisabledByCanEditChange))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} |