34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
/******************************************************************************
|
|
* Copyright (C) Ultraleap, Inc. 2011-2024. *
|
|
* *
|
|
* Use subject to the terms of the Apache License 2.0 available at *
|
|
* http://www.apache.org/licenses/LICENSE-2.0, or another agreement *
|
|
* between Ultraleap and you, your company or other organization. *
|
|
******************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "LeapUtility.h"
|
|
#include "LeapTrackingSettings.generated.h"
|
|
|
|
|
|
/**
|
|
* UltrleapTrackingSettings
|
|
*/
|
|
UCLASS(config = Game, defaultconfig)
|
|
class ULeapTrackingSettings : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UPROPERTY(config, EditAnywhere, Category = "Ultraleap Settings")
|
|
TArray<FString> UltraleapHints;
|
|
|
|
#if WITH_EDITOR
|
|
virtual void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override;
|
|
#endif
|
|
|
|
};
|