Formally marked as deprecated EQS-configuration properties that have been annotated as deprecated for a long while now. The properties are to be removed entirely for 5.1.

#jira UE-140959
#preflight 61fa964adb42673a602ed580
#rb julien.marchand

#ROBOMERGE-AUTHOR: mieszko.zielinski
#ROBOMERGE-SOURCE: CL 18827202 in //UE5/Release-5.0/... via CL 18827229 via CL 18827545
#ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v910-18824042)

[CL 18827559 by mieszko zielinski in ue5-main branch]
This commit is contained in:
mieszko zielinski
2022-02-02 10:55:41 -05:00
parent 5a7d293801
commit f041d0ee86
2 changed files with 12 additions and 6 deletions

View File

@@ -27,22 +27,27 @@ class AIMODULE_API UBTTask_RunEQSQuery : public UBTTask_BlackboardBase
GENERATED_UCLASS_BODY()
/** query to run */
UPROPERTY(Category = Node, VisibleAnywhere, meta = (EditCondition = "!bUseBBKey", DisplayName = "QueryTemplate_DEPRECATED"))
UE_DEPRECATED_FORGAME(5.0, "UBTTask_RunEQSQuery.QueryTemplate has been deprecated for a long while now. Will be removed in the next engine version.")
UPROPERTY()
TObjectPtr<UEnvQuery> QueryTemplate;
/** optional parameters for query */
UPROPERTY(Category = Node, VisibleAnywhere, meta = (DisplayName = "QueryParams_DEPRECATED"))
UE_DEPRECATED_FORGAME(5.0, "UBTTask_RunEQSQuery.QueryParams has been deprecated for a long while now. Will be removed in the next engine version.")
UPROPERTY()
TArray<FEnvNamedValue> QueryParams;
UPROPERTY(Category = Node, VisibleAnywhere, meta = (DisplayName = "QueryConfig_DEPRECATED"))
UE_DEPRECATED_FORGAME(5.0, "UBTTask_RunEQSQuery.QueryConfig has been deprecated for a long while now. Will be removed in the next engine version.")
UPROPERTY()
TArray<FAIDynamicParam> QueryConfig;
/** determines which item will be stored (All = only first matching) */
UPROPERTY(Category = Node, VisibleAnywhere, meta = (DisplayName = "RunMode_DEPRECATED"))
UE_DEPRECATED_FORGAME(5.0, "UBTTask_RunEQSQuery.RunMode has been deprecated for a long while now. Will be removed in the next engine version.")
UPROPERTY()
TEnumAsByte<EEnvQueryRunMode::Type> RunMode;
/** blackboard key storing an EQS query template */
UPROPERTY(VisibleAnywhere, Category = Blackboard, meta = (EditCondition = "bUseBBKey", DisplayName = "EQSQueryBlackboardKey_DEPRECATED"))
UE_DEPRECATED_FORGAME(5.0, "UBTTask_RunEQSQuery.EQSQueryBlackboardKey been deprecated for a long while now. Will be removed in the next engine version.")
UPROPERTY()
struct FBlackboardKeySelector EQSQueryBlackboardKey;
UPROPERTY(EditAnywhere, Category=Node, meta=(InlineEditConditionToggle))

View File

@@ -29,7 +29,8 @@ class AIMODULE_API AEQSTestingPawn : public ACharacter, public IEQSQueryResultSo
TObjectPtr<UEnvQuery> QueryTemplate;
/** optional parameters for query */
UPROPERTY(Category=EQS, VisibleAnywhere, meta=(DisplayName="QueryParams_DEPRECATED"))
UE_DEPRECATED_FORGAME(5.0, "QueryParams has been deprecated for a long while now. Will be removed in the next engine version.")
UPROPERTY()
TArray<FEnvNamedValue> QueryParams;
UPROPERTY(Category=EQS, EditAnywhere)