mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DataProviders/AIDataProvider.h"
|
|
#include "EnvironmentQuery/Generators/EnvQueryGenerator_ProjectedPoints.h"
|
|
#include "Templates/SubclassOf.h"
|
|
#include "FortQueryGenerator_PointsOnBuildingGrid.generated.h"
|
|
|
|
class UEnvQueryContext;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UFortQueryGenerator_PointsOnBuildingGrid : public UEnvQueryGenerator_ProjectedPoints {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY( EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FAIDataProviderIntValue HorizontalGridSize;
|
|
|
|
UPROPERTY( EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FAIDataProviderIntValue VerticalGridSize;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
bool bStartGridFromBottom;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
bool bUsePointInVerticalCenterOfCell;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSubclassOf<UEnvQueryContext> GenerateAround;
|
|
|
|
UFortQueryGenerator_PointsOnBuildingGrid();
|
|
};
|
|
|