CelticCraft/Plugins/VoxelFree/Source/VoxelGraph/Public/VoxelNodes/VoxelNodeStructs.h

19 lines
374 B
C
Raw Normal View History

2023-07-03 16:17:13 +00:00
// Copyright 2020 Phyronnaz
#pragma once
#include "CoreMinimal.h"
#include "VoxelPinCategory.h"
#include "VoxelNodeStructs.generated.h"
USTRUCT()
struct FVoxelNamedDataPin
{
GENERATED_BODY()
UPROPERTY(EditAnywhere, Category = "Voxel")
EVoxelDataPinCategory Type = EVoxelDataPinCategory::Float;
UPROPERTY(EditAnywhere, Category = "Voxel")
FString Name = "Value";
};