19 lines
511 B
C++
Executable file
19 lines
511 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "SDFBase.h"
|
|
#include "SDFSmoothingProperties.h"
|
|
#include "SDFIntersectOp.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class FSDENGINE_API USDFIntersectOp : public USDFBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FSDFSmoothingProperties Properties;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TArray<USDFBase*> Arguments;
|
|
|
|
USDFIntersectOp();
|
|
};
|
|
|