2022-03-02 13:25:37 -05:00
|
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include "SmartObjectTypes.h"
|
|
|
|
|
|
#include "Engine/DeveloperSettings.h"
|
|
|
|
|
|
#include "SmartObjectSettings.generated.h"
|
|
|
|
|
|
|
|
|
|
|
|
UCLASS(config = SmartObjects, defaultconfig, DisplayName = "SmartObject", AutoExpandCategories = "SmartObject")
|
|
|
|
|
|
class SMARTOBJECTSMODULE_API USmartObjectSettings : public UDeveloperSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
/**
|
2022-03-02 22:33:53 -05:00
|
|
|
|
* Default filtering policy to use for TagQueries applied on User Tags in newly created SmartObjectDefinitions.
|
|
|
|
|
|
* Indicates how TagQueries from slots and parent object will be processed against User Tags from a find request.
|
2022-03-02 13:25:37 -05:00
|
|
|
|
*/
|
|
|
|
|
|
UPROPERTY(EditAnywhere, config, Category = SmartObject)
|
2022-03-02 22:33:53 -05:00
|
|
|
|
ESmartObjectTagFilteringPolicy DefaultUserTagsFilteringPolicy = ESmartObjectTagFilteringPolicy::Override;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Default merging policy to use for Activity Tags in newly created SmartObjectDefinitions.
|
|
|
|
|
|
* Indicates how Activity Tags from slots and parent object are combined to be evaluated by an Activity TagQuery from a find request.
|
|
|
|
|
|
*/
|
|
|
|
|
|
UPROPERTY(EditAnywhere, config, Category = SmartObject)
|
|
|
|
|
|
ESmartObjectTagMergingPolicy DefaultActivityTagsMergingPolicy = ESmartObjectTagMergingPolicy::Override;
|
2022-03-02 13:25:37 -05:00
|
|
|
|
};
|