Skip to content

Commit 597d3df

Browse files
committed
Update PCGExPathInsert.h
1 parent 31a9b45 commit 597d3df

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Source/PCGExElementsPaths/Public/Elements/PCGExPathInsert.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,23 +93,23 @@ class UPCGExPathInsertSettings : public UPCGExPathProcessorSettings
9393
bool bSnapToPath = false;
9494

9595
/** If enabled, only insert targets that project to edge interiors (not endpoints). Targets at alpha 0 or 1 are skipped. */
96-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Search", meta=(PCG_Overridable))
96+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta=(PCG_Overridable))
9797
bool bEdgeInteriorOnly = false;
9898

9999
/** If enabled, targets beyond path endpoints can extend the path (open paths only). */
100-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Search", meta=(PCG_Overridable, EditCondition="!bEdgeInteriorOnly", EditConditionHides))
100+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta=(PCG_Overridable, EditCondition="!bEdgeInteriorOnly", EditConditionHides))
101101
bool bAllowPathExtension = true;
102102

103103
/** Only insert points that are within a specified range of the path. */
104-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Search", meta=(PCG_NotOverridable))
104+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta=(PCG_NotOverridable))
105105
bool bWithinRange = false;
106106

107107
/** Maximum distance from path for a point to be inserted. */
108-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Search", meta=(PCG_Overridable, EditCondition="bWithinRange", EditConditionHides))
108+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta=(PCG_Overridable, EditCondition="bWithinRange", EditConditionHides))
109109
FPCGExInputShorthandNameDoubleAbs Range = FPCGExInputShorthandNameDoubleAbs(FName("Range"), 100, false);
110110

111111
/** Limit how many points can be inserted per edge. */
112-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Search", meta=(PCG_NotOverridable))
112+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta=(PCG_NotOverridable))
113113
bool bLimitInsertsPerEdge = false;
114114

115115
/** How to interpret the limit value. */

0 commit comments

Comments
 (0)