You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #jira UE-99463 #preflight 6288fd998828ea88c8aef3d0 #ROBOMERGE-OWNER: robert.manuszewski #ROBOMERGE-AUTHOR: robert.manuszewski #ROBOMERGE-SOURCE: CL 20314896 via CL 20314897 via CL 20314903 via CL 20314904 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v948-20297126) [CL 20315214 by robert manuszewski in ue5-main branch]
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DeveloperSettings.h"
|
|
#include "AdvancedCopyCustomization.h"
|
|
#include "Engine/AssetUserData.h"
|
|
#include "Engine/EngineTypes.h"
|
|
#include "AssetToolsSettings.generated.h"
|
|
|
|
USTRUCT()
|
|
struct FAdvancedCopyMap
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
/** When copying this class, use a particular set of dependency and destination rules */
|
|
UPROPERTY(EditAnywhere, Category = "Asset Tools", meta = (MetaClass = "/Script/CoreUObject.Object"))
|
|
FSoftClassPath ClassToCopy;
|
|
|
|
/** The set of dependency and destination rules to use for advanced copy */
|
|
UPROPERTY(EditAnywhere, Category = "Asset Tools", meta = (MetaClass = "/Script/AssetTools.AdvancedCopyCustomization"))
|
|
FSoftClassPath AdvancedCopyCustomization;
|
|
};
|
|
|
|
UCLASS(config = Game, defaultconfig, meta = (DisplayName = "Asset Tools"))
|
|
class ASSETTOOLS_API UAssetToolsSettings : public UDeveloperSettings
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UAssetToolsSettings() {};
|
|
|
|
/** List of rules to use when advanced copying assets */
|
|
UPROPERTY(config, EditAnywhere, Category = "Advanced Copy", Meta = (TitleProperty = "ClassToCopy"))
|
|
TArray<FAdvancedCopyMap> AdvancedCopyCustomizations;
|
|
};
|