Files
2026-04-22 15:51:07 +02:00

18 lines
414 B
C++

#pragma once
#include "CoreMinimal.h"
#include "FortItemPickerBase.h"
#include "FortTransformKeyPicker.generated.h"
class UObject;
UCLASS(Abstract, Blueprintable, EditInlineNew)
class UFortTransformKeyPicker : public UFortItemPickerBase {
GENERATED_BODY()
public:
UFortTransformKeyPicker();
UFUNCTION(BlueprintCallable)
void RebuildTransformKeys(const TArray<UObject*>& InDataProvider);
};