2023-03-14 13:35:46 -04:00
|
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include "Engine/DeveloperSettings.h"
|
|
|
|
|
|
#include "StateTreeSettings.generated.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* Default StateTree settings
|
|
|
|
|
|
*/
|
|
|
|
|
|
UCLASS(config = StateTree, defaultconfig, DisplayName = "StateTree")
|
|
|
|
|
|
class STATETREEMODULE_API UStateTreeSettings : public UDeveloperSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
static UStateTreeSettings& Get() { return *CastChecked<UStateTreeSettings>(UStateTreeSettings::StaticClass()->GetDefaultObject()); }
|
2023-03-15 11:59:44 -04:00
|
|
|
|
|
|
|
|
|
|
/** The debugger is still an experimental feature, hence not active by default. */
|
2023-03-14 13:35:46 -04:00
|
|
|
|
UPROPERTY(EditDefaultsOnly, Category = StateTree, config)
|
|
|
|
|
|
bool bUseDebugger = false;
|
|
|
|
|
|
};
|