You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
19 lines
536 B
C
19 lines
536 B
C
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include "UObject/Object.h"
|
|||
|
|
|
|||
|
|
#include "CollectionConfig.generated.h"
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
UCLASS(minimalapi, config=EditorSettings, meta=(DisplayName = "Collections", ToolTip="Settings to tweak the behaviour of collections in the editor"))
|
|||
|
|
class UCollectionConfig : public UObject
|
|||
|
|
{
|
|||
|
|
GENERATED_BODY()
|
|||
|
|
public:
|
|||
|
|
/** When enabled, Shared and Private collections will automatically commit their changes to source control */
|
|||
|
|
UPROPERTY(config)
|
|||
|
|
bool bAutoCommitOnSave = true;
|
|||
|
|
};
|