DRG-Femboy-Voice/Source/FSD/Public/LineSegmentFillerPoint.h
2025-04-15 12:39:31 -07:00

25 lines
721 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "RandRange.h"
#include "LineSegmentFillerPoint.generated.h"
USTRUCT(BlueprintType)
struct FLineSegmentFillerPoint {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FVector Position;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FRandRange RandomRange;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FRandRange RandomNoiseRange;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FRandRange FillAmount;
FSD_API FLineSegmentFillerPoint();
};