Missing File for large map manager

This commit is contained in:
aollero 2022-06-13 15:06:38 +02:00 committed by bernat
parent fc7186a09d
commit 71bb22f874
1 changed files with 6 additions and 5 deletions

View File

@ -104,6 +104,12 @@ public:
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Large Map Manager")
void ClearWorldAndTiles();
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Large Map Manager")
void GenerateMap_Editor()
{
if (!LargeMapTilePath.IsEmpty()) GenerateMap(LargeMapTilePath);
}
void AddActorToUnloadedList(const FCarlaActor& CarlaActor, const FTransform& Transform);
UFUNCTION(BlueprintCallable, Category = "Large Map Manager")
@ -283,11 +289,6 @@ protected:
UPROPERTY(EditAnywhere, Category = "Large Map Manager")
bool ShouldTilesBlockOnLoad = false;
UFUNCTION(BlueprintCallable, CallInEditor, Category = "Large Map Manager")
void GenerateMap_Editor()
{
if (!LargeMapTilePath.IsEmpty()) GenerateMap(LargeMapTilePath);
}
void RegisterTilesInWorldComposition();