@@ -104,26 +104,26 @@ class PCGEXTENDEDTOOLKIT_API UPCGExPointsProcessorSettings : public UPCGSettings
104104
105105 bool SupportsPointFilters () const { return !GetPointFilterPin ().IsNone (); }
106106
107- /* * If enabled, will pre-instanciate all data on a single thread to avoid contention. Not all nodes support this. */
108- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable, AdvancedDisplay ))
107+ /* * If enabled, will pre-allocate all data on a single thread to avoid contention. Not all nodes support this. */
108+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable))
109109 EPCGExOptionState BulkInitData = EPCGExOptionState::Default;
110110
111111 /* * Async work priority for this node.*/
112- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable, AdvancedDisplay) )
112+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable) , AdvancedDisplay)
113113 EPCGExAsyncPriority WorkPriority = EPCGExAsyncPriority::Default;
114114
115115 /* * Cache the results of this node. */
116- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable, AdvancedDisplay ))
116+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable))
117117 EPCGExOptionState CacheData = EPCGExOptionState::Default;
118118
119- /* * Flatten the output of this node.*/
120- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable, AdvancedDisplay))
121- bool bFlattenOutput = false ;
122-
123119 /* * Whether scoped attribute read is enabled or not. Disabling this on small dataset may greatly improve performance. It's enabled by default for legacy reasons. */
124- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable, AdvancedDisplay ))
120+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = Performance, meta=(PCG_NotOverridable))
125121 EPCGExOptionState ScopedAttributeGet = EPCGExOptionState::Default;
126122
123+ /* * Flatten the output of this node. */
124+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Cleanup" , meta=(PCG_NotOverridable))
125+ bool bFlattenOutput = false ;
126+
127127 /* * If the node registers consumable attributes, these will be deleted from the output data. */
128128 UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Cleanup" , meta=(PCG_NotOverridable))
129129 bool bCleanupConsumableAttributes = false ;
@@ -137,19 +137,19 @@ class PCGEXTENDEDTOOLKIT_API UPCGExPointsProcessorSettings : public UPCGSettings
137137 TArray<FName> ProtectedAttributes;
138138
139139 /* * Whether the execution of the graph should be cancelled if this node execution is cancelled internally */
140- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable, AdvancedDisplay ))
140+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable))
141141 bool bPropagateAbortedExecution = false ;
142142
143143 /* * */
144- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable, AdvancedDisplay ))
144+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable))
145145 bool bQuietInvalidInputWarning = false ;
146146
147147 /* * */
148- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable, AdvancedDisplay ))
148+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable))
149149 bool bQuietMissingInputError = false ;
150150
151151 /* * */
152- UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable, AdvancedDisplay ))
152+ UPROPERTY (BlueprintReadWrite, EditAnywhere, Category = " Warnings and Errors" , meta=(PCG_NotOverridable))
153153 bool bQuietCancellationError = false ;
154154
155155 // ~End UPCGExPointsProcessorSettings
0 commit comments