KLingo Project Documentation 1.0.0
Unreal Engine 5.6 C++ Project Documentation
로딩중...
검색중...
일치하는것 없음
FLevelData.h
이 파일의 문서화 페이지로 가기
1// Copyright (c) 2025 Doppleddiggong. All rights reserved. Unauthorized copying, modification, or distribution of this file, via any medium is strictly prohibited. Proprietary and confidential.
2
7#pragma once
8
9#include "CoreMinimal.h"
10#include "Engine/DataTable.h"
11#include "FLevelData.generated.h"
12
17USTRUCT(BlueprintType)
18struct LATTELIBRARY_API FLevelData : public FTableRowBase
19{
20 GENERATED_BODY()
21
22
23 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "LevelData")
24 int32 Index = 0;
25
27 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "LevelData")
28 int32 Step = 1;
29
31 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "LevelData")
32 int32 Level = 1;
33
35 UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "LevelData", meta = (ClampMin = "0"))
36 float Time = 300.0f;
37};
레벨 데이터를 정의하는 구조체
Definition FLevelData.h:19