You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Source/PCGExElementsClipper2/Public/Core/PCGExClipper2Processor.h
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -293,17 +293,17 @@ class PCGEXELEMENTSCLIPPER2_API UPCGExClipper2ProcessorSettings : public UPCGExP
293
293
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Output|Flags", meta = (PCG_Overridable, EditCondition="bFlagIntersections"))
294
294
FName IntersectionFlagName = "IsIntersection";
295
295
296
-
/** Write a flag marking path endpoint (start/end) points. */
296
+
/** Write a flag identifying the start/end of joint arcs at the original path's endpoints (e.g. round caps on offset/inflate). Only applies to open source paths. */
297
297
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Output|Flags", meta = (PCG_Overridable, InlineEditConditionToggle))
298
-
boolbFlagEndpoints = false;
298
+
boolbFlagJoints = false;
299
299
300
-
/** Name of the int32 attribute for path endpoint type */
301
-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Output|Flags", meta = (PCG_Overridable, EditCondition="bFlagEndpoints"))
302
-
FName EndpointFlagName = "EndpointType";
300
+
/** Name of the int32 attribute for joint type */
301
+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = "Settings|Output|Flags", meta = (PCG_Overridable, EditCondition="bFlagJoints"))
302
+
FName JointFlagName = "JointType";
303
303
304
-
/** Pick which value will be written for each endpoint type. */
0 commit comments