You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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:
@@ -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))
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user