23 lines
735 B
C++
23 lines
735 B
C++
// Copyright PICO Technology Co., Ltd. All rights reserved.
|
|
// This plugin incorporates portions of the Unreal® Engine. Unreal® is a trademark or registered trademark of Epic Games, Inc. in the United States of America and elsewhere.
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "PXR_EditorSettings.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(config = Editor, defaultconfig)
|
|
class PICOXREDITOR_API UPICOXREditorSettings : public UObject
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
public:
|
|
/** Whether or not to show the PICOXR Input settings toolbar button */
|
|
UPROPERTY(config, EditAnywhere, Category = "PICOXR Editor Settings")
|
|
bool bShowPICOXRInputToolbarButton;
|
|
};
|