martin #15

Merged
martinluckyrobots merged 4 commits from martin into main 2025-04-08 04:03:38 +00:00
15 changed files with 26 additions and 0 deletions
Showing only changes of commit 3f655bb1a9 - Show all commits

Binary file not shown.

View File

@ -645,3 +645,29 @@ public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
bool RandomTexture;
};
USTRUCT(BlueprintType)
struct FAllTransformCapture
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FTransform Position;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FString Name;
};
USTRUCT(BlueprintType)
struct FPipeType
{
GENERATED_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
bool IsOpen;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
FTransform Transform;
};