Variants / Chaining / Icons / ...

This commit is contained in:
2023-07-22 17:01:54 +02:00
parent 77bb47aeb9
commit 224154e100
110 changed files with 97 additions and 27 deletions

View File

@@ -29,6 +29,9 @@ protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere)
int32 BlocksY = 10;
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
int32 MaxVariants = 5;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
ALevelTemplate* CurrentLevel;
@@ -36,7 +39,7 @@ protected:
TMap<int32, TSubclassOf<ABuildingBlock>> BlockTemplates;
UFUNCTION(BlueprintCallable, CallInEditor)
void GenerateBoard(TSubclassOf<ALevelTemplate> &Template);
void GenerateBoard(const TSubclassOf<ALevelTemplate> Template);
public: