├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Config ├── DefaultPCGExtendedToolkit.ini └── FilterPlugin.ini ├── Content ├── ActorDataPackers │ └── DP_AttributesToTags.uasset ├── Curves │ ├── FC_PCGExGraphBalance_AngleOnly.uasset │ ├── FC_PCGExGraphBalance_Default.uasset │ ├── FC_PCGExGraphBalance_DistanceOnly.uasset │ ├── FC_PCGExSteepness_Default.uasset │ ├── FC_PCGExWeightDistribution_Constrast_Inv.uasset │ ├── FC_PCGExWeightDistribution_Expo.uasset │ ├── FC_PCGExWeightDistribution_Expo_Inv.uasset │ ├── FC_PCGExWeightDistribution_Linear.uasset │ └── FC_PCGExWeightDistribution_Linear_Inv.uasset ├── Data │ └── Bitmasks │ │ └── PCGEx_3DCompass.uasset └── Subgraphs │ ├── BitmaskFilterPresets │ ├── PCGEx_Filter_DeadEnd_X.uasset │ ├── PCGEx_Filter_DeadEnd_Xn.uasset │ ├── PCGEx_Filter_DeadEnd_Y.uasset │ ├── PCGEx_Filter_DeadEnd_Yn.uasset │ ├── PCGEx_Filter_DeadEnd_Z.uasset │ └── PCGEx_Filter_DeadEnd_Zn.uasset │ ├── ClusterStatesPresets │ ├── Bitmasks │ │ ├── PCGEx_Bitmasks_Dir_Corners.uasset │ │ ├── PCGEx_Bitmasks_Dir_Edges_XY.uasset │ │ ├── PCGEx_Bitmasks_Dir_Edges_XZ.uasset │ │ ├── PCGEx_Bitmasks_Dir_Edges_YZ.uasset │ │ ├── PCGEx_Bitmasks_Dir_Faces.uasset │ │ ├── PCGEx_Bitmasks_State_AllButX.uasset │ │ ├── PCGEx_Bitmasks_State_AllButXn.uasset │ │ ├── PCGEx_Bitmasks_State_AllButY.uasset │ │ ├── PCGEx_Bitmasks_State_AllButYn.uasset │ │ ├── PCGEx_Bitmasks_State_AllButZ.uasset │ │ └── PCGEx_Bitmasks_State_AllButZn.uasset │ ├── Data │ │ ├── PCGEx_ClusterState.uasset │ │ └── PCGEx_StateDeprecation.uasset │ ├── PCGEx_ClusterStates_Corners.uasset │ ├── PCGEx_ClusterStates_Corners_XYZ.uasset │ ├── PCGEx_ClusterStates_Cube.uasset │ ├── PCGEx_ClusterStates_Edges.uasset │ ├── PCGEx_ClusterStates_Edges_XY.uasset │ ├── PCGEx_ClusterStates_Edges_XZ.uasset │ ├── PCGEx_ClusterStates_Edges_YZ.uasset │ ├── PCGEx_ClusterStates_Faces.uasset │ ├── PCGEx_ClusterStates_Faces_X.uasset │ ├── PCGEx_ClusterStates_Faces_Y.uasset │ └── PCGEx_ClusterStates_Faces_Z.uasset │ ├── FilterPresets │ ├── PCGEx_Filter_FirstAndLast.uasset │ └── PCGEx_Pickers_FirstAndLast.uasset │ ├── PCGEx_DebugBounds.uasset │ ├── PCGEx_DebugEdges.uasset │ ├── PCGEx_DebugFilters.uasset │ ├── PCGEx_DebugHeuristics.uasset │ ├── PCGEx_DebugPaths.uasset │ ├── PCGEx_DebugSphere.uasset │ ├── PCGEx_PruneEdgeByLength_Replacement.uasset │ ├── PCGEx_SolidifyEdges.uasset │ ├── ProbePresets │ ├── Data │ │ └── PCGEx_ToggleableProbeDirection.uasset │ ├── PCGEx_Probes_Corners.uasset │ ├── PCGEx_Probes_Cube.uasset │ ├── PCGEx_Probes_Edges_XY.uasset │ ├── PCGEx_Probes_Edges_XZ.uasset │ ├── PCGEx_Probes_Edges_YZ.uasset │ └── PCGEx_Probes_Faces.uasset │ ├── SpawnPCGGraph │ ├── BP_PCGExHostActor.uasset │ ├── PCGEx_SpawnPCGGraph.uasset │ └── PCGEx_SpawnPCGGraphByAttribute.uasset │ └── Utils │ ├── PCGEX_ParcelSplit_Recursive.uasset │ ├── PCGEx_3DSpatialNoise.uasset │ ├── PCGEx_BoundsCrossSection.uasset │ ├── PCGEx_ConcaveHull2D.uasset │ ├── PCGEx_CookieCut.uasset │ ├── PCGEx_FilterAttributeSet.uasset │ ├── PCGEx_MergeCells.uasset │ ├── PCGEx_MergeCells_Clusters.uasset │ ├── PCGEx_MergeCells_Loop_Clusters.uasset │ ├── PCGEx_MergePaths.uasset │ ├── PCGEx_Outlines2D.uasset │ ├── PCGEx_Parcels2D.uasset │ ├── PCGEx_PathTesselate.uasset │ ├── PCGEx_PrunedDelaunay.uasset │ ├── PCGEx_RandomColor.uasset │ ├── PCGEx_RandomRotationSnap.uasset │ ├── PCGEx_RemapData.uasset │ ├── PCGEx_SetColor.uasset │ ├── PCGEx_SortAttributeSet.uasset │ ├── PCGEx_TestAttributeSet.uasset │ ├── PCGEx_UberFilter_SplineCollection.uasset │ └── PCGEx_WrappingCircle.uasset ├── LICENSE ├── PCGExtendedToolkit.uplugin ├── README.md ├── Resources ├── Icon128.png └── Icons │ ├── PCGExActorCollection.png │ ├── PCGExAssetCollection.png │ ├── PCGExBeacon.png │ ├── PCGExBitmaskCollection.png │ ├── PCGExCustomActorDataPacker.png │ ├── PCGExCustomGraphBuilder.png │ ├── PCGExCustomGraphSettings.png │ ├── PCGExMeshCollection.png │ ├── PCGEx_Editor_AddContentBrowserSelection.svg │ ├── PCGEx_Editor_AfterStaging.svg │ ├── PCGEx_Editor_All.svg │ ├── PCGEx_Editor_Ascending.svg │ ├── PCGEx_Editor_Attribute.svg │ ├── PCGEx_Editor_AxisOrder_XYZ.svg │ ├── PCGEx_Editor_AxisOrder_XZY.svg │ ├── PCGEx_Editor_AxisOrder_YXZ.svg │ ├── PCGEx_Editor_AxisOrder_YZX.svg │ ├── PCGEx_Editor_AxisOrder_ZXY.svg │ ├── PCGEx_Editor_AxisOrder_ZYX.svg │ ├── PCGEx_Editor_BeforeStaging.svg │ ├── PCGEx_Editor_Bit_Direct.svg │ ├── PCGEx_Editor_Bit_Mutations.svg │ ├── PCGEx_Editor_Bounds.svg │ ├── PCGEx_Editor_CCW.svg │ ├── PCGEx_Editor_CW.svg │ ├── PCGEx_Editor_Ceil.svg │ ├── PCGEx_Editor_Center.svg │ ├── PCGEx_Editor_CollectionRule.svg │ ├── PCGEx_Editor_Constant.svg │ ├── PCGEx_Editor_DataAttribute.svg │ ├── PCGEx_Editor_Default.svg │ ├── PCGEx_Editor_DensityBounds.svg │ ├── PCGEx_Editor_Descending.svg │ ├── PCGEx_Editor_Disabled.svg │ ├── PCGEx_Editor_Dist_BoxBounds.svg │ ├── PCGEx_Editor_Dist_Center.svg │ ├── PCGEx_Editor_Dist_SphereBounds.svg │ ├── PCGEx_Editor_Edges.svg │ ├── PCGEx_Editor_Enabled.svg │ ├── PCGEx_Editor_Entries.svg │ ├── PCGEx_Editor_EntryRule.svg │ ├── PCGEx_Editor_Exclude.svg │ ├── PCGEx_Editor_Fit_Average.svg │ ├── PCGEx_Editor_Fit_Fill.svg │ ├── PCGEx_Editor_Fit_Max.svg │ ├── PCGEx_Editor_Fit_Min.svg │ ├── PCGEx_Editor_Fit_None.svg │ ├── PCGEx_Editor_Fixed.svg │ ├── PCGEx_Editor_Flexible.svg │ ├── PCGEx_Editor_Floor.svg │ ├── PCGEx_Editor_From_Center.svg │ ├── PCGEx_Editor_From_Custom.svg │ ├── PCGEx_Editor_From_Max.svg │ ├── PCGEx_Editor_From_Min.svg │ ├── PCGEx_Editor_From_Pivot.svg │ ├── PCGEx_Editor_Include.svg │ ├── PCGEx_Editor_MissingData_Error.svg │ ├── PCGEx_Editor_MissingData_Fail.svg │ ├── PCGEx_Editor_MissingData_Pass.svg │ ├── PCGEx_Editor_MultiMat.svg │ ├── PCGEx_Editor_NoSnapping.svg │ ├── PCGEx_Editor_NormalizeWeight.svg │ ├── PCGEx_Editor_Numeric.svg │ ├── PCGEx_Editor_RebuildStaging.svg │ ├── PCGEx_Editor_RebuildStagingProject.svg │ ├── PCGEx_Editor_RebuildStagingRecursive.svg │ ├── PCGEx_Editor_RotOrder_X.svg │ ├── PCGEx_Editor_RotOrder_XY.svg │ ├── PCGEx_Editor_RotOrder_XZ.svg │ ├── PCGEx_Editor_RotOrder_Y.svg │ ├── PCGEx_Editor_RotOrder_YX.svg │ ├── PCGEx_Editor_RotOrder_YZ.svg │ ├── PCGEx_Editor_RotOrder_Z.svg │ ├── PCGEx_Editor_RotOrder_ZX.svg │ ├── PCGEx_Editor_RotOrder_ZY.svg │ ├── PCGEx_Editor_Round.svg │ ├── PCGEx_Editor_STF_Individual.svg │ ├── PCGEx_Editor_STF_None.svg │ ├── PCGEx_Editor_STF_Uniform.svg │ ├── PCGEx_Editor_ScaledBounds.svg │ ├── PCGEx_Editor_Settings.svg │ ├── PCGEx_Editor_SingleMat.svg │ ├── PCGEx_Editor_Snap.svg │ ├── PCGEx_Editor_SnapOffset.svg │ ├── PCGEx_Editor_SnapResult.svg │ ├── PCGEx_Editor_Text.svg │ ├── PCGEx_Editor_To_Center.svg │ ├── PCGEx_Editor_To_Custom.svg │ ├── PCGEx_Editor_To_Max.svg │ ├── PCGEx_Editor_To_Min.svg │ ├── PCGEx_Editor_To_Pivot.svg │ ├── PCGEx_Editor_To_Same.svg │ ├── PCGEx_Editor_Unchanged.svg │ ├── PCGEx_Editor_Vtx.svg │ ├── PCGEx_Editor_X.svg │ ├── PCGEx_Editor_Y.svg │ ├── PCGEx_Editor_Z.svg │ ├── PCGEx_Pin_IN_Action.svg │ ├── PCGEx_Pin_IN_BlendOp.svg │ ├── PCGEx_Pin_IN_ClusterState.svg │ ├── PCGEx_Pin_IN_Edges.svg │ ├── PCGEx_Pin_IN_FillControl.svg │ ├── PCGEx_Pin_IN_Filter.svg │ ├── PCGEx_Pin_IN_FilterCollection.svg │ ├── PCGEx_Pin_IN_FilterEdge.svg │ ├── PCGEx_Pin_IN_FilterPoint.svg │ ├── PCGEx_Pin_IN_FilterVtx.svg │ ├── PCGEx_Pin_IN_Heuristics.svg │ ├── PCGEx_Pin_IN_MatchRule.svg │ ├── PCGEx_Pin_IN_NeighborSampler.svg │ ├── PCGEx_Pin_IN_PartitionRule.svg │ ├── PCGEx_Pin_IN_Picker.svg │ ├── PCGEx_Pin_IN_PointState.svg │ ├── PCGEx_Pin_IN_Probe.svg │ ├── PCGEx_Pin_IN_RecursionTracker.svg │ ├── PCGEx_Pin_IN_Shape.svg │ ├── PCGEx_Pin_IN_SortRule.svg │ ├── PCGEx_Pin_IN_Special.svg │ ├── PCGEx_Pin_IN_Tensor.svg │ ├── PCGEx_Pin_IN_TexParam.svg │ ├── PCGEx_Pin_IN_Vtx.svg │ ├── PCGEx_Pin_IN_VtxProperty.svg │ ├── PCGEx_Pin_OUT_Action.svg │ ├── PCGEx_Pin_OUT_BlendOp.svg │ ├── PCGEx_Pin_OUT_ClusterState.svg │ ├── PCGEx_Pin_OUT_Edges.svg │ ├── PCGEx_Pin_OUT_FillControl.svg │ ├── PCGEx_Pin_OUT_Filter.svg │ ├── PCGEx_Pin_OUT_FilterCollection.svg │ ├── PCGEx_Pin_OUT_FilterEdge.svg │ ├── PCGEx_Pin_OUT_FilterPoint.svg │ ├── PCGEx_Pin_OUT_FilterVtx.svg │ ├── PCGEx_Pin_OUT_Heuristics.svg │ ├── PCGEx_Pin_OUT_MatchRule.svg │ ├── PCGEx_Pin_OUT_NeighborSampler.svg │ ├── PCGEx_Pin_OUT_PartitionRule.svg │ ├── PCGEx_Pin_OUT_Picker.svg │ ├── PCGEx_Pin_OUT_PointState.svg │ ├── PCGEx_Pin_OUT_Probe.svg │ ├── PCGEx_Pin_OUT_RecursionTracker.svg │ ├── PCGEx_Pin_OUT_Shape.svg │ ├── PCGEx_Pin_OUT_SortRule.svg │ ├── PCGEx_Pin_OUT_Special.svg │ ├── PCGEx_Pin_OUT_Tensor.svg │ ├── PCGEx_Pin_OUT_TexParam.svg │ ├── PCGEx_Pin_OUT_Vtx.svg │ └── PCGEx_Pin_OUT_VtxProperty.svg ├── SECURITY.md ├── SUPPORTERS.md ├── Source ├── PCGExtendedToolkit │ ├── PCGExtendedToolkit.Build.cs │ ├── Private │ │ ├── Actions │ │ │ ├── PCGExActionFactoryProvider.cpp │ │ │ ├── PCGExActionWriteValues.cpp │ │ │ └── PCGExBatchActions.cpp │ │ ├── AssetStaging │ │ │ ├── PCGExAssetCollectionToSet.cpp │ │ │ ├── PCGExAssetStaging.cpp │ │ │ ├── PCGExCollectionToModuleInfos.cpp │ │ │ ├── PCGExMeshSelectorStaged.cpp │ │ │ ├── PCGExSocketStaging.cpp │ │ │ └── PCGExStaging.cpp │ │ ├── Collections │ │ │ ├── PCGExActorCollection.cpp │ │ │ ├── PCGExAssetCollection.cpp │ │ │ ├── PCGExAssetGrammar.cpp │ │ │ ├── PCGExAssetLoader.cpp │ │ │ ├── PCGExBitmaskCollection.cpp │ │ │ ├── PCGExComponentDescriptors.cpp │ │ │ └── PCGExMeshCollection.cpp │ │ ├── Constants │ │ │ ├── PCGExBitmask.cpp │ │ │ ├── PCGExConstantEnum.cpp │ │ │ ├── PCGExConstants.cpp │ │ │ └── PCGExTuple.cpp │ │ ├── Data │ │ │ ├── Blending │ │ │ │ ├── PCGExBlendLerp.cpp │ │ │ │ ├── PCGExBlendMinMax.cpp │ │ │ │ ├── PCGExBlendModes.cpp │ │ │ │ ├── PCGExBlendOpFactoryProvider.cpp │ │ │ │ ├── PCGExBlendOpsManager.cpp │ │ │ │ ├── PCGExDataBlending.cpp │ │ │ │ ├── PCGExMetadataBlender.cpp │ │ │ │ ├── PCGExProxyDataBlending.cpp │ │ │ │ ├── PCGExUnionBlender.cpp │ │ │ │ └── PCGExUnionOpsManager.cpp │ │ │ ├── Matching │ │ │ │ ├── PCGExMatchAttrToAttr.cpp │ │ │ │ ├── PCGExMatchByIndex.cpp │ │ │ │ ├── PCGExMatchCopyTags.cpp │ │ │ │ ├── PCGExMatchRandom.cpp │ │ │ │ ├── PCGExMatchRuleFactoryProvider.cpp │ │ │ │ ├── PCGExMatchSharedTag.cpp │ │ │ │ ├── PCGExMatchTagToAttr.cpp │ │ │ │ └── PCGExMatching.cpp │ │ │ ├── PCGExAttributeHasher.cpp │ │ │ ├── PCGExAttributeHelpers.cpp │ │ │ ├── PCGExAttributeMapHelpers.cpp │ │ │ ├── PCGExData.cpp │ │ │ ├── PCGExDataFilter.cpp │ │ │ ├── PCGExDataForward.cpp │ │ │ ├── PCGExDataHelpers.cpp │ │ │ ├── PCGExDataPreloader.cpp │ │ │ ├── PCGExDataTag.cpp │ │ │ ├── PCGExDataValue.cpp │ │ │ ├── PCGExDefaultValueContainer.cpp │ │ │ ├── PCGExFilterGroup.cpp │ │ │ ├── PCGExPointData.cpp │ │ │ ├── PCGExPointElements.cpp │ │ │ ├── PCGExPointFilter.cpp │ │ │ ├── PCGExPointIO.cpp │ │ │ ├── PCGExPointIOMerger.cpp │ │ │ ├── PCGExPointStates.cpp │ │ │ ├── PCGExProxyData.cpp │ │ │ ├── PCGExProxyDataHelpers.cpp │ │ │ ├── PCGExSettingsOverrides.cpp │ │ │ ├── PCGExUnionData.cpp │ │ │ ├── PCGExValueHash.cpp │ │ │ └── Sharing │ │ │ │ ├── PCGExBeacon.cpp │ │ │ │ └── PCGExDataSharing.cpp │ │ ├── Debug │ │ │ ├── PCGExDrawAttributes.cpp │ │ │ └── PCGExFlushDebug.cpp │ │ ├── Details │ │ │ ├── PCGExDetailsAttributes.cpp │ │ │ ├── PCGExDetailsAxis.cpp │ │ │ ├── PCGExDetailsBitmask.cpp │ │ │ ├── PCGExDetailsCollision.cpp │ │ │ ├── PCGExDetailsCompareShorthands.cpp │ │ │ ├── PCGExDetailsDistances.cpp │ │ │ ├── PCGExDetailsFiltering.cpp │ │ │ ├── PCGExDetailsFusing.cpp │ │ │ ├── PCGExDetailsGraph.cpp │ │ │ ├── PCGExDetailsInputShorthands.cpp │ │ │ ├── PCGExDetailsIntersection.cpp │ │ │ ├── PCGExDetailsNoise.cpp │ │ │ ├── PCGExDetailsRelax.cpp │ │ │ ├── PCGExDetailsSettings.cpp │ │ │ ├── PCGExDetailsStaging.cpp │ │ │ └── PCGExDetailsSubdivision.cpp │ │ ├── Geometry │ │ │ ├── PCGExGeo.cpp │ │ │ ├── PCGExGeoDelaunay.cpp │ │ │ ├── PCGExGeoMesh.cpp │ │ │ ├── PCGExGeoPointBox.cpp │ │ │ ├── PCGExGeoTasks.cpp │ │ │ └── PCGExGeoVoronoi.cpp │ │ ├── Graph │ │ │ ├── Data │ │ │ │ └── PCGExClusterData.cpp │ │ │ ├── Diagrams │ │ │ │ ├── PCGExBuildConvexHull.cpp │ │ │ │ ├── PCGExBuildConvexHull2D.cpp │ │ │ │ ├── PCGExBuildDelaunayGraph.cpp │ │ │ │ ├── PCGExBuildDelaunayGraph2D.cpp │ │ │ │ ├── PCGExBuildVoronoiGraph.cpp │ │ │ │ └── PCGExBuildVoronoiGraph2D.cpp │ │ │ ├── Edges │ │ │ │ ├── PCGExEdgeOrder.cpp │ │ │ │ ├── PCGExFilterVtx.cpp │ │ │ │ ├── PCGExRefineEdges.cpp │ │ │ │ ├── PCGExRelaxClusters.cpp │ │ │ │ ├── PCGExSubdivideEdges.cpp │ │ │ │ ├── PCGExWriteEdgeProperties.cpp │ │ │ │ ├── PCGExWriteVtxProperties.cpp │ │ │ │ └── Properties │ │ │ │ │ ├── PCGExVtxPropertyAmplitude.cpp │ │ │ │ │ ├── PCGExVtxPropertyEdgeMatch.cpp │ │ │ │ │ ├── PCGExVtxPropertyFactoryProvider.cpp │ │ │ │ │ ├── PCGExVtxPropertySpecialEdges.cpp │ │ │ │ │ └── PCGExVtxPropertySpecialNeighbors.cpp │ │ │ ├── Filters │ │ │ │ ├── Edges │ │ │ │ │ ├── PCGExEdgeEndpointsCheckFilter.cpp │ │ │ │ │ ├── PCGExEdgeEndpointsCompareNumFilter.cpp │ │ │ │ │ ├── PCGExEdgeEndpointsCompareStrFilter.cpp │ │ │ │ │ ├── PCGExEdgeLengthFilter.cpp │ │ │ │ │ ├── PCGExEdgeNeighborsCountFilter.cpp │ │ │ │ │ └── PCGExIsoEdgeDirectionFilter.cpp │ │ │ │ ├── Nodes │ │ │ │ │ ├── PCGExNodeAdjacencyFilter.cpp │ │ │ │ │ ├── PCGExNodeEdgeAngleFilter.cpp │ │ │ │ │ ├── PCGExNodeEdgeDirectionFilter.cpp │ │ │ │ │ └── PCGExNodeNeighborsCountFilter.cpp │ │ │ │ ├── PCGExAdjacency.cpp │ │ │ │ └── PCGExClusterFilter.cpp │ │ │ ├── FloodFill │ │ │ │ ├── FillControls │ │ │ │ │ ├── PCGExFillControlCount.cpp │ │ │ │ │ ├── PCGExFillControlDepth.cpp │ │ │ │ │ ├── PCGExFillControlEdgeFilters.cpp │ │ │ │ │ ├── PCGExFillControlKeepDirection.cpp │ │ │ │ │ ├── PCGExFillControlLength.cpp │ │ │ │ │ ├── PCGExFillControlOperation.cpp │ │ │ │ │ ├── PCGExFillControlRunningAverage.cpp │ │ │ │ │ ├── PCGExFillControlVtxFilters.cpp │ │ │ │ │ └── PCGExFillControlsFactoryProvider.cpp │ │ │ │ ├── PCGExFloodFill.cpp │ │ │ │ └── PCGExFloodFillClusters.cpp │ │ │ ├── PCGExBoundsClustersIntersection.cpp │ │ │ ├── PCGExBreakClustersToPaths.cpp │ │ │ ├── PCGExBuildCustomGraph.cpp │ │ │ ├── PCGExChain.cpp │ │ │ ├── PCGExCluster.cpp │ │ │ ├── PCGExClusterCentrality.cpp │ │ │ ├── PCGExClusterMT.cpp │ │ │ ├── PCGExClusterUtils.cpp │ │ │ ├── PCGExConnectClusters.cpp │ │ │ ├── PCGExConnectPoints.cpp │ │ │ ├── PCGExCopyClustersToPoints.cpp │ │ │ ├── PCGExCutClusters.cpp │ │ │ ├── PCGExEdge.cpp │ │ │ ├── PCGExEdgeDirectionSettings.cpp │ │ │ ├── PCGExEdgesProcessor.cpp │ │ │ ├── PCGExFindClustersData.cpp │ │ │ ├── PCGExFindPointOnBoundsClusters.cpp │ │ │ ├── PCGExFuseClusters.cpp │ │ │ ├── PCGExGraph.cpp │ │ │ ├── PCGExIntersections.cpp │ │ │ ├── PCGExMakeClustersUnique.cpp │ │ │ ├── PCGExMergeVertices.cpp │ │ │ ├── PCGExMeshToClusters.cpp │ │ │ ├── PCGExPackClusters.cpp │ │ │ ├── PCGExPartitionVertices.cpp │ │ │ ├── PCGExPickClosestClusters.cpp │ │ │ ├── PCGExSanitizeClusters.cpp │ │ │ ├── PCGExSimplifyClusters.cpp │ │ │ ├── PCGExUnionProcessor.cpp │ │ │ ├── PCGExUnpackClusters.cpp │ │ │ ├── Pathfinding │ │ │ │ ├── GoalPickers │ │ │ │ │ ├── PCGExGoalPicker.cpp │ │ │ │ │ ├── PCGExGoalPickerAll.cpp │ │ │ │ │ ├── PCGExGoalPickerAttribute.cpp │ │ │ │ │ └── PCGExGoalPickerRandom.cpp │ │ │ │ ├── Heuristics │ │ │ │ │ ├── PCGExHeuristicAttribute.cpp │ │ │ │ │ ├── PCGExHeuristicAzimuth.cpp │ │ │ │ │ ├── PCGExHeuristicDistance.cpp │ │ │ │ │ ├── PCGExHeuristicFeedback.cpp │ │ │ │ │ ├── PCGExHeuristicInertia.cpp │ │ │ │ │ ├── PCGExHeuristicNodeCount.cpp │ │ │ │ │ ├── PCGExHeuristicOperation.cpp │ │ │ │ │ ├── PCGExHeuristicSteepness.cpp │ │ │ │ │ ├── PCGExHeuristicTensor.cpp │ │ │ │ │ ├── PCGExHeuristics.cpp │ │ │ │ │ └── PCGExHeuristicsFactoryProvider.cpp │ │ │ │ ├── PCGExNavmesh.cpp │ │ │ │ ├── PCGExPathfinding.cpp │ │ │ │ ├── PCGExPathfindingEdges.cpp │ │ │ │ ├── PCGExPathfindingFindAllCells.cpp │ │ │ │ ├── PCGExPathfindingFindClusterHull.cpp │ │ │ │ ├── PCGExPathfindingFindContours.cpp │ │ │ │ ├── PCGExPathfindingGrowPaths.cpp │ │ │ │ ├── PCGExPathfindingNavmesh.cpp │ │ │ │ ├── PCGExPathfindingPlotEdges.cpp │ │ │ │ ├── PCGExPathfindingPlotNavmesh.cpp │ │ │ │ └── Search │ │ │ │ │ ├── PCGExSearchAStar.cpp │ │ │ │ │ ├── PCGExSearchDijkstra.cpp │ │ │ │ │ └── PCGExSearchOperation.cpp │ │ │ ├── Probes │ │ │ │ ├── PCGExProbeAnisotropic.cpp │ │ │ │ ├── PCGExProbeBitmasks.cpp │ │ │ │ ├── PCGExProbeClosest.cpp │ │ │ │ ├── PCGExProbeDirection.cpp │ │ │ │ ├── PCGExProbeFactoryProvider.cpp │ │ │ │ ├── PCGExProbeIndex.cpp │ │ │ │ ├── PCGExProbeNumericCompare.cpp │ │ │ │ ├── PCGExProbeOperation.cpp │ │ │ │ └── PCGExProbeTensor.cpp │ │ │ └── States │ │ │ │ ├── PCGExAdjacencyStates.cpp │ │ │ │ ├── PCGExClusterStates.cpp │ │ │ │ └── PCGExClusterWriteStates.cpp │ │ ├── Layout │ │ │ ├── PCGExBinPacking.cpp │ │ │ └── PCGExLayout.cpp │ │ ├── Misc │ │ │ ├── CollectionFilters │ │ │ │ ├── PCGExAttributeCheckFilter.cpp │ │ │ │ ├── PCGExDataBoundsFilter.cpp │ │ │ │ ├── PCGExEntryCountFilter.cpp │ │ │ │ ├── PCGExTagCheckFilter.cpp │ │ │ │ └── PCGExTagValueFilter.cpp │ │ │ ├── Filters │ │ │ │ ├── PCGExAngleFilter.cpp │ │ │ │ ├── PCGExBitmaskFilter.cpp │ │ │ │ ├── PCGExBooleanCompareFilter.cpp │ │ │ │ ├── PCGExBoundsFilter.cpp │ │ │ │ ├── PCGExConstantFilter.cpp │ │ │ │ ├── PCGExDistanceFilter.cpp │ │ │ │ ├── PCGExDotFilter.cpp │ │ │ │ ├── PCGExFilterFactoryProvider.cpp │ │ │ │ ├── PCGExFilterGroupFactoryProvider.cpp │ │ │ │ ├── PCGExGameplayTagsFilter.cpp │ │ │ │ ├── PCGExInclusionFilter.cpp │ │ │ │ ├── PCGExMeanFilter.cpp │ │ │ │ ├── PCGExModuloCompareFilter.cpp │ │ │ │ ├── PCGExNumericCompareFilter.cpp │ │ │ │ ├── PCGExNumericCompareNearestFilter.cpp │ │ │ │ ├── PCGExNumericSelfCompareFilter.cpp │ │ │ │ ├── PCGExPickerFilter.cpp │ │ │ │ ├── PCGExPolyPathFilterFactory.cpp │ │ │ │ ├── PCGExRandomFilter.cpp │ │ │ │ ├── PCGExRandomRatioFilter.cpp │ │ │ │ ├── PCGExSegmentCrossFilter.cpp │ │ │ │ ├── PCGExSegmentLengthFilter.cpp │ │ │ │ ├── PCGExStringCompareFilter.cpp │ │ │ │ ├── PCGExStringSelfCompareFilter.cpp │ │ │ │ ├── PCGExTensorDotFilter.cpp │ │ │ │ ├── PCGExTimeFilter.cpp │ │ │ │ ├── PCGExValueHashFilter.cpp │ │ │ │ └── PCGExWithinRangeFilter.cpp │ │ │ ├── PCGExAttributeHash.cpp │ │ │ ├── PCGExAttributeRemap.cpp │ │ │ ├── PCGExAttributeStats.cpp │ │ │ ├── PCGExAttributesToTags.cpp │ │ │ ├── PCGExBitmaskMerge.cpp │ │ │ ├── PCGExBitwiseOperation.cpp │ │ │ ├── PCGExBlendAttributes.cpp │ │ │ ├── PCGExBranchOnDataAttribute.cpp │ │ │ ├── PCGExCherryPickPoints.cpp │ │ │ ├── PCGExCollocationCount.cpp │ │ │ ├── PCGExCopyToPoints.cpp │ │ │ ├── PCGExDestroyActor.cpp │ │ │ ├── PCGExDiscardByOverlap.cpp │ │ │ ├── PCGExDiscardByPointCount.cpp │ │ │ ├── PCGExDiscardSame.cpp │ │ │ ├── PCGExFindPointOnBounds.cpp │ │ │ ├── PCGExFusePoints.cpp │ │ │ ├── PCGExGetGUID.cpp │ │ │ ├── PCGExIterations.cpp │ │ │ ├── PCGExMergePoints.cpp │ │ │ ├── PCGExMergePointsByTag.cpp │ │ │ ├── PCGExMetaCleanup.cpp │ │ │ ├── PCGExModularPartitionByValues.cpp │ │ │ ├── PCGExModularSortPoints.cpp │ │ │ ├── PCGExPartitionByValues.cpp │ │ │ ├── PCGExPointsToBounds.cpp │ │ │ ├── PCGExRecursionTracker.cpp │ │ │ ├── PCGExReduceDataAttribute.cpp │ │ │ ├── PCGExRefreshSeed.cpp │ │ │ ├── PCGExReversePointOrder.cpp │ │ │ ├── PCGExSortCollections.cpp │ │ │ ├── PCGExSortPoints.cpp │ │ │ ├── PCGExSpatialTriage.cpp │ │ │ ├── PCGExUberBranch.cpp │ │ │ ├── PCGExUberFilter.cpp │ │ │ ├── PCGExUberFilterCollections.cpp │ │ │ ├── PCGExWriteGUID.cpp │ │ │ ├── PCGExWriteIndex.cpp │ │ │ ├── PCGExWriteStates.cpp │ │ │ └── Picker │ │ │ │ ├── PCGExPickerAttributeSet.cpp │ │ │ │ ├── PCGExPickerAttributeSetRanges.cpp │ │ │ │ ├── PCGExPickerConstant.cpp │ │ │ │ ├── PCGExPickerConstantRange.cpp │ │ │ │ └── PCGExPickerFactoryProvider.cpp │ │ ├── PCGEx.cpp │ │ ├── PCGExBroadcast.cpp │ │ ├── PCGExCommon.cpp │ │ ├── PCGExCompare.cpp │ │ ├── PCGExContext.cpp │ │ ├── PCGExElement.cpp │ │ ├── PCGExFactories.cpp │ │ ├── PCGExFactoryProvider.cpp │ │ ├── PCGExGlobalSettings.cpp │ │ ├── PCGExHelpers.cpp │ │ ├── PCGExInstancedFactory.cpp │ │ ├── PCGExMT.cpp │ │ ├── PCGExMath.cpp │ │ ├── PCGExMathBounds.cpp │ │ ├── PCGExMathMean.cpp │ │ ├── PCGExOperation.cpp │ │ ├── PCGExPointsMT.cpp │ │ ├── PCGExPointsProcessor.cpp │ │ ├── PCGExPropertyHelpers.cpp │ │ ├── PCGExRandom.cpp │ │ ├── PCGExSettings.cpp │ │ ├── PCGExSorting.cpp │ │ ├── PCGExSortingRuleProvider.cpp │ │ ├── PCGExSubSystem.cpp │ │ ├── PCGExtendedToolkit.cpp │ │ ├── Paths │ │ │ ├── PCGExAttributeRolling.cpp │ │ │ ├── PCGExBevelPath.cpp │ │ │ ├── PCGExBlendPath.cpp │ │ │ ├── PCGExBoundsPathIntersection.cpp │ │ │ ├── PCGExCreateSpline.cpp │ │ │ ├── PCGExExtrudeTensors.cpp │ │ │ ├── PCGExFuseCollinear.cpp │ │ │ ├── PCGExOffsetPath.cpp │ │ │ ├── PCGExOrient.cpp │ │ │ ├── PCGExPathCrossings.cpp │ │ │ ├── PCGExPathInsert.cpp │ │ │ ├── PCGExPathProcessor.cpp │ │ │ ├── PCGExPathResample.cpp │ │ │ ├── PCGExPathShift.cpp │ │ │ ├── PCGExPathShrink.cpp │ │ │ ├── PCGExPathSlide.cpp │ │ │ ├── PCGExPathSolidify.cpp │ │ │ ├── PCGExPathSplineMesh.cpp │ │ │ ├── PCGExPathSplineMeshSimple.cpp │ │ │ ├── PCGExPathStitch.cpp │ │ │ ├── PCGExPathToClusters.cpp │ │ │ ├── PCGExPaths.cpp │ │ │ ├── PCGExSmooth.cpp │ │ │ ├── PCGExSplineToPath.cpp │ │ │ ├── PCGExSplitPath.cpp │ │ │ ├── PCGExSubdivide.cpp │ │ │ ├── PCGExWritePathProperties.cpp │ │ │ ├── PCGExWriteTangents.cpp │ │ │ ├── SubPoints │ │ │ │ ├── DataBlending │ │ │ │ │ ├── PCGExSubPointsBlendInheritEnd.cpp │ │ │ │ │ ├── PCGExSubPointsBlendInheritStart.cpp │ │ │ │ │ ├── PCGExSubPointsBlendInterpolate.cpp │ │ │ │ │ ├── PCGExSubPointsBlendNone.cpp │ │ │ │ │ └── PCGExSubPointsBlendOperation.cpp │ │ │ │ └── PCGExSubPointsInstancedFactory.cpp │ │ │ └── Tangents │ │ │ │ └── PCGExTangentsInstancedFactory.cpp │ │ ├── Sampling │ │ │ ├── Neighbors │ │ │ │ ├── PCGExNeighborSampleAttribute.cpp │ │ │ │ ├── PCGExNeighborSampleBlend.cpp │ │ │ │ ├── PCGExNeighborSampleFactoryProvider.cpp │ │ │ │ ├── PCGExNeighborSampleFilters.cpp │ │ │ │ └── PCGExNeighborSampleProperties.cpp │ │ │ ├── PCGExGetTextureData.cpp │ │ │ ├── PCGExPackActorData.cpp │ │ │ ├── PCGExSampleInsidePath.cpp │ │ │ ├── PCGExSampleNearestBounds.cpp │ │ │ ├── PCGExSampleNearestPath.cpp │ │ │ ├── PCGExSampleNearestPoint.cpp │ │ │ ├── PCGExSampleNearestSpline.cpp │ │ │ ├── PCGExSampleNearestSurface.cpp │ │ │ ├── PCGExSampleNeighbors.cpp │ │ │ ├── PCGExSampleOverlapStats.cpp │ │ │ ├── PCGExSampleSockets.cpp │ │ │ ├── PCGExSampleSurfaceGuided.cpp │ │ │ ├── PCGExSampleTexture.cpp │ │ │ ├── PCGExSampleVtxByID.cpp │ │ │ ├── PCGExSampling.cpp │ │ │ ├── PCGExSelfPruning.cpp │ │ │ └── PCGExTexParamFactoryProvider.cpp │ │ ├── Shapes │ │ │ ├── Builders │ │ │ │ ├── PCGExShapeCircle.cpp │ │ │ │ ├── PCGExShapeFiblat.cpp │ │ │ │ ├── PCGExShapeGrid.cpp │ │ │ │ └── PCGExShapePolygon.cpp │ │ │ ├── PCGExCreateShapes.cpp │ │ │ ├── PCGExShapeBuilderFactoryProvider.cpp │ │ │ ├── PCGExShapeBuilderOperation.cpp │ │ │ ├── PCGExShapeProcessor.cpp │ │ │ └── PCGExShapes.cpp │ │ ├── System │ │ │ └── PCGExWaitForPCGData.cpp │ │ ├── Topology │ │ │ ├── PCGExDynamicMeshComponent.cpp │ │ │ ├── PCGExSpawnDynamicMesh.cpp │ │ │ ├── PCGExToggleTopology.cpp │ │ │ ├── PCGExTopology.cpp │ │ │ ├── PCGExTopologyClusterSurface.cpp │ │ │ ├── PCGExTopologyEdgesProcessor.cpp │ │ │ ├── PCGExTopologyPathSurface.cpp │ │ │ └── PCGExTopologyPointSurface.cpp │ │ └── Transform │ │ │ ├── PCGExBestMatchAxis.cpp │ │ │ ├── PCGExBoundsAxisToPoints.cpp │ │ │ ├── PCGExBoundsToPoints.cpp │ │ │ ├── PCGExCopyToPaths.cpp │ │ │ ├── PCGExFitting.cpp │ │ │ ├── PCGExFlatProjection.cpp │ │ │ ├── PCGExLloydRelax.cpp │ │ │ ├── PCGExLloydRelax2D.cpp │ │ │ ├── PCGExMovePivot.cpp │ │ │ ├── PCGExNormalize.cpp │ │ │ ├── PCGExTensorsTransform.cpp │ │ │ ├── PCGExTransform.cpp │ │ │ ├── PCGExTransformPoints.cpp │ │ │ └── Tensors │ │ │ ├── PCGExTensor.cpp │ │ │ ├── PCGExTensorConstant.cpp │ │ │ ├── PCGExTensorFactoryProvider.cpp │ │ │ ├── PCGExTensorFlow.cpp │ │ │ ├── PCGExTensorHandler.cpp │ │ │ ├── PCGExTensorInertia.cpp │ │ │ ├── PCGExTensorInertiaConstant.cpp │ │ │ ├── PCGExTensorNull.cpp │ │ │ ├── PCGExTensorOperation.cpp │ │ │ ├── PCGExTensorPathFlow.cpp │ │ │ ├── PCGExTensorPathPole.cpp │ │ │ ├── PCGExTensorPole.cpp │ │ │ ├── PCGExTensorSpin.cpp │ │ │ ├── PCGExTensorSplineFactoryProvider.cpp │ │ │ ├── PCGExTensorSplineFlow.cpp │ │ │ ├── PCGExTensorSplinePole.cpp │ │ │ └── Samplers │ │ │ ├── PCGExTensorSampler.cpp │ │ │ ├── PCGExTensorSamplerRK4.cpp │ │ │ └── PCGExTensorSamplerSixPoints.cpp │ └── Public │ │ ├── Actions │ │ ├── PCGExActionFactoryProvider.h │ │ ├── PCGExActionWriteValues.h │ │ └── PCGExBatchActions.h │ │ ├── AssetStaging │ │ ├── PCGExAssetCollectionToSet.h │ │ ├── PCGExAssetStaging.h │ │ ├── PCGExCollectionToModuleInfos.h │ │ ├── PCGExMeshSelectorStaged.h │ │ ├── PCGExSocketStaging.h │ │ └── PCGExStaging.h │ │ ├── Collections │ │ ├── PCGExActorCollection.h │ │ ├── PCGExAssetCollection.h │ │ ├── PCGExAssetGrammar.h │ │ ├── PCGExAssetLoader.h │ │ ├── PCGExBitmaskCollection.h │ │ ├── PCGExComponentDescriptors.h │ │ └── PCGExMeshCollection.h │ │ ├── Constants │ │ ├── PCGExBitmask.h │ │ ├── PCGExConstantEnum.h │ │ ├── PCGExConstants.h │ │ ├── PCGExConstantsDefinitions.h │ │ └── PCGExTuple.h │ │ ├── Data │ │ ├── Blending │ │ │ ├── PCGExBlendLerp.h │ │ │ ├── PCGExBlendMinMax.h │ │ │ ├── PCGExBlendModes.h │ │ │ ├── PCGExBlendOpFactoryProvider.h │ │ │ ├── PCGExBlendOpsManager.h │ │ │ ├── PCGExDataBlending.h │ │ │ ├── PCGExMetadataBlender.h │ │ │ ├── PCGExProxyDataBlending.h │ │ │ ├── PCGExUnionBlender.h │ │ │ └── PCGExUnionOpsManager.h │ │ ├── Matching │ │ │ ├── PCGExMatchAttrToAttr.h │ │ │ ├── PCGExMatchByIndex.h │ │ │ ├── PCGExMatchCopyTags.h │ │ │ ├── PCGExMatchRandom.h │ │ │ ├── PCGExMatchRuleFactoryProvider.h │ │ │ ├── PCGExMatchSharedTag.h │ │ │ ├── PCGExMatchTagToAttr.h │ │ │ └── PCGExMatching.h │ │ ├── PCGExAttributeHasher.h │ │ ├── PCGExAttributeHelpers.h │ │ ├── PCGExAttributeMapHelpers.h │ │ ├── PCGExBufferHelper.h │ │ ├── PCGExData.h │ │ ├── PCGExDataFilter.h │ │ ├── PCGExDataForward.h │ │ ├── PCGExDataHelpers.h │ │ ├── PCGExDataPreloader.h │ │ ├── PCGExDataTag.h │ │ ├── PCGExDataValue.h │ │ ├── PCGExDefaultValueContainer.h │ │ ├── PCGExFilterGroup.h │ │ ├── PCGExPointData.h │ │ ├── PCGExPointElements.h │ │ ├── PCGExPointFilter.h │ │ ├── PCGExPointIO.h │ │ ├── PCGExPointIOMerger.h │ │ ├── PCGExPointStates.h │ │ ├── PCGExProxyData.h │ │ ├── PCGExProxyDataHelpers.h │ │ ├── PCGExSettingsOverrides.h │ │ ├── PCGExUnionData.h │ │ ├── PCGExValueHash.h │ │ └── Sharing │ │ │ ├── PCGExBeacon.h │ │ │ └── PCGExDataSharing.h │ │ ├── Debug │ │ ├── PCGExDrawAttributes.h │ │ └── PCGExFlushDebug.h │ │ ├── Details │ │ ├── PCGExDetailsAttributes.h │ │ ├── PCGExDetailsAxis.h │ │ ├── PCGExDetailsBitmask.h │ │ ├── PCGExDetailsCluster.h │ │ ├── PCGExDetailsCollision.h │ │ ├── PCGExDetailsCompareShorthands.h │ │ ├── PCGExDetailsDistances.h │ │ ├── PCGExDetailsFiltering.h │ │ ├── PCGExDetailsFusing.h │ │ ├── PCGExDetailsGraph.h │ │ ├── PCGExDetailsInputShorthands.h │ │ ├── PCGExDetailsIntersection.h │ │ ├── PCGExDetailsNoise.h │ │ ├── PCGExDetailsRelax.h │ │ ├── PCGExDetailsSettings.h │ │ ├── PCGExDetailsStaging.h │ │ ├── PCGExDetailsSubdivision.h │ │ ├── PCGExMacros.h │ │ ├── PCGExSettingsMacros.h │ │ └── PCGExWaitMacros.h │ │ ├── Geometry │ │ ├── PCGExGeo.h │ │ ├── PCGExGeoDelaunay.h │ │ ├── PCGExGeoMesh.h │ │ ├── PCGExGeoPointBox.h │ │ ├── PCGExGeoPrimtives.h │ │ ├── PCGExGeoTasks.h │ │ └── PCGExGeoVoronoi.h │ │ ├── Graph │ │ ├── Data │ │ │ └── PCGExClusterData.h │ │ ├── Diagrams │ │ │ ├── PCGExBuildConvexHull.h │ │ │ ├── PCGExBuildConvexHull2D.h │ │ │ ├── PCGExBuildDelaunayGraph.h │ │ │ ├── PCGExBuildDelaunayGraph2D.h │ │ │ ├── PCGExBuildVoronoiGraph.h │ │ │ └── PCGExBuildVoronoiGraph2D.h │ │ ├── Edges │ │ │ ├── PCGExEdgeOrder.h │ │ │ ├── PCGExFilterVtx.h │ │ │ ├── PCGExRefineEdges.h │ │ │ ├── PCGExRelaxClusters.h │ │ │ ├── PCGExSubdivideEdges.h │ │ │ ├── PCGExWriteEdgeProperties.h │ │ │ ├── PCGExWriteVtxProperties.h │ │ │ ├── Properties │ │ │ │ ├── PCGExVtxPropertyAmplitude.h │ │ │ │ ├── PCGExVtxPropertyEdgeMatch.h │ │ │ │ ├── PCGExVtxPropertyFactoryProvider.h │ │ │ │ ├── PCGExVtxPropertySpecialEdges.h │ │ │ │ └── PCGExVtxPropertySpecialNeighbors.h │ │ │ ├── Refining │ │ │ │ ├── PCGExEdgeRefineByFilter.h │ │ │ │ ├── PCGExEdgeRefineGabriel.h │ │ │ │ ├── PCGExEdgeRefineKeepHighestScore.h │ │ │ │ ├── PCGExEdgeRefineKeepLongest.h │ │ │ │ ├── PCGExEdgeRefineKeepLowestScore.h │ │ │ │ ├── PCGExEdgeRefineKeepShortest.h │ │ │ │ ├── PCGExEdgeRefineLineTrace.h │ │ │ │ ├── PCGExEdgeRefineOperation.h │ │ │ │ ├── PCGExEdgeRefinePrimMST.h │ │ │ │ ├── PCGExEdgeRefineRemoveHighestScore.h │ │ │ │ ├── PCGExEdgeRefineRemoveLeaves.h │ │ │ │ ├── PCGExEdgeRefineRemoveLongest.h │ │ │ │ ├── PCGExEdgeRefineRemoveLowestScore.h │ │ │ │ ├── PCGExEdgeRefineRemoveOverlap.h │ │ │ │ ├── PCGExEdgeRefineRemoveShortest.h │ │ │ │ ├── PCGExEdgeRefineSkeleton.h │ │ │ │ └── PCGExEdgeRefineTrajanDFS.h │ │ │ └── Relaxing │ │ │ │ ├── PCGExBoxFittingRelax.h │ │ │ │ ├── PCGExFittingRelaxBase.h │ │ │ │ ├── PCGExForceDirectedRelax.h │ │ │ │ ├── PCGExLaplacianRelax.h │ │ │ │ ├── PCGExRadiusFittingRelax.h │ │ │ │ ├── PCGExRelaxClusterOperation.h │ │ │ │ └── PCGExVerletRelax.h │ │ ├── Filters │ │ │ ├── Edges │ │ │ │ ├── PCGExEdgeEndpointsCheckFilter.h │ │ │ │ ├── PCGExEdgeEndpointsCompareNumFilter.h │ │ │ │ ├── PCGExEdgeEndpointsCompareStrFilter.h │ │ │ │ ├── PCGExEdgeLengthFilter.h │ │ │ │ ├── PCGExEdgeNeighborsCountFilter.h │ │ │ │ └── PCGExIsoEdgeDirectionFilter.h │ │ │ ├── Nodes │ │ │ │ ├── PCGExNodeAdjacencyFilter.h │ │ │ │ ├── PCGExNodeEdgeAngleFilter.h │ │ │ │ ├── PCGExNodeEdgeDirectionFilter.h │ │ │ │ └── PCGExNodeNeighborsCountFilter.h │ │ │ ├── PCGExAdjacency.h │ │ │ └── PCGExClusterFilter.h │ │ ├── FloodFill │ │ │ ├── FillControls │ │ │ │ ├── PCGExFillControlCount.h │ │ │ │ ├── PCGExFillControlDepth.h │ │ │ │ ├── PCGExFillControlEdgeFilters.h │ │ │ │ ├── PCGExFillControlKeepDirection.h │ │ │ │ ├── PCGExFillControlLength.h │ │ │ │ ├── PCGExFillControlOperation.h │ │ │ │ ├── PCGExFillControlRunningAverage.h │ │ │ │ ├── PCGExFillControlVtxFilters.h │ │ │ │ └── PCGExFillControlsFactoryProvider.h │ │ │ ├── PCGExFloodFill.h │ │ │ └── PCGExFloodFillClusters.h │ │ ├── PCGExBoundsClustersIntersection.h │ │ ├── PCGExBreakClustersToPaths.h │ │ ├── PCGExBuildCustomGraph.h │ │ ├── PCGExChain.h │ │ ├── PCGExCluster.h │ │ ├── PCGExClusterCentrality.h │ │ ├── PCGExClusterMT.h │ │ ├── PCGExClusterUtils.h │ │ ├── PCGExConnectClusters.h │ │ ├── PCGExConnectPoints.h │ │ ├── PCGExCopyClustersToPoints.h │ │ ├── PCGExCutClusters.h │ │ ├── PCGExEdge.h │ │ ├── PCGExEdgeDirectionSettings.h │ │ ├── PCGExEdgesProcessor.h │ │ ├── PCGExFindClustersData.h │ │ ├── PCGExFindPointOnBoundsClusters.h │ │ ├── PCGExFuseClusters.h │ │ ├── PCGExGraph.h │ │ ├── PCGExIntersections.h │ │ ├── PCGExMakeClustersUnique.h │ │ ├── PCGExMergeVertices.h │ │ ├── PCGExMeshToClusters.h │ │ ├── PCGExPackClusters.h │ │ ├── PCGExPartitionVertices.h │ │ ├── PCGExPickClosestClusters.h │ │ ├── PCGExSanitizeClusters.h │ │ ├── PCGExSimplifyClusters.h │ │ ├── PCGExUnionProcessor.h │ │ ├── PCGExUnpackClusters.h │ │ ├── Pathfinding │ │ │ ├── GoalPickers │ │ │ │ ├── PCGExGoalPicker.h │ │ │ │ ├── PCGExGoalPickerAll.h │ │ │ │ ├── PCGExGoalPickerAttribute.h │ │ │ │ └── PCGExGoalPickerRandom.h │ │ │ ├── Heuristics │ │ │ │ ├── PCGExHeuristicAttribute.h │ │ │ │ ├── PCGExHeuristicAzimuth.h │ │ │ │ ├── PCGExHeuristicDistance.h │ │ │ │ ├── PCGExHeuristicFeedback.h │ │ │ │ ├── PCGExHeuristicInertia.h │ │ │ │ ├── PCGExHeuristicNodeCount.h │ │ │ │ ├── PCGExHeuristicOperation.h │ │ │ │ ├── PCGExHeuristicSteepness.h │ │ │ │ ├── PCGExHeuristicTensor.h │ │ │ │ ├── PCGExHeuristics.h │ │ │ │ └── PCGExHeuristicsFactoryProvider.h │ │ │ ├── PCGExNavmesh.h │ │ │ ├── PCGExPathfinding.h │ │ │ ├── PCGExPathfindingEdges.h │ │ │ ├── PCGExPathfindingFindAllCells.h │ │ │ ├── PCGExPathfindingFindClusterHull.h │ │ │ ├── PCGExPathfindingFindContours.h │ │ │ ├── PCGExPathfindingGrowPaths.h │ │ │ ├── PCGExPathfindingNavmesh.h │ │ │ ├── PCGExPathfindingPlotEdges.h │ │ │ ├── PCGExPathfindingPlotNavmesh.h │ │ │ └── Search │ │ │ │ ├── PCGExScoredQueue.h │ │ │ │ ├── PCGExSearchAStar.h │ │ │ │ ├── PCGExSearchDijkstra.h │ │ │ │ └── PCGExSearchOperation.h │ │ ├── Probes │ │ │ ├── PCGExProbeAnisotropic.h │ │ │ ├── PCGExProbeBitmasks.h │ │ │ ├── PCGExProbeClosest.h │ │ │ ├── PCGExProbeDirection.h │ │ │ ├── PCGExProbeFactoryProvider.h │ │ │ ├── PCGExProbeIndex.h │ │ │ ├── PCGExProbeNumericCompare.h │ │ │ ├── PCGExProbeOperation.h │ │ │ ├── PCGExProbeTensor.h │ │ │ └── PCGExProbing.h │ │ └── States │ │ │ ├── PCGExAdjacencyStates.h │ │ │ ├── PCGExClusterStates.h │ │ │ └── PCGExClusterWriteStates.h │ │ ├── Layout │ │ ├── PCGExBinPacking.h │ │ └── PCGExLayout.h │ │ ├── Misc │ │ ├── CollectionFilters │ │ │ ├── PCGExAttributeCheckFilter.h │ │ │ ├── PCGExDataBoundsFilter.h │ │ │ ├── PCGExEntryCountFilter.h │ │ │ ├── PCGExTagCheckFilter.h │ │ │ └── PCGExTagValueFilter.h │ │ ├── Filters │ │ │ ├── PCGExAngleFilter.h │ │ │ ├── PCGExBitmaskFilter.h │ │ │ ├── PCGExBooleanCompareFilter.h │ │ │ ├── PCGExBoundsFilter.h │ │ │ ├── PCGExConstantFilter.h │ │ │ ├── PCGExDistanceFilter.h │ │ │ ├── PCGExDotFilter.h │ │ │ ├── PCGExFilterFactoryProvider.h │ │ │ ├── PCGExFilterGroupFactoryProvider.h │ │ │ ├── PCGExGameplayTagsFilter.h │ │ │ ├── PCGExInclusionFilter.h │ │ │ ├── PCGExMeanFilter.h │ │ │ ├── PCGExModuloCompareFilter.h │ │ │ ├── PCGExNumericCompareFilter.h │ │ │ ├── PCGExNumericCompareNearestFilter.h │ │ │ ├── PCGExNumericSelfCompareFilter.h │ │ │ ├── PCGExPickerFilter.h │ │ │ ├── PCGExPolyPathFilterFactory.h │ │ │ ├── PCGExRandomFilter.h │ │ │ ├── PCGExRandomRatioFilter.h │ │ │ ├── PCGExSegmentCrossFilter.h │ │ │ ├── PCGExSegmentLengthFilter.h │ │ │ ├── PCGExStringCompareFilter.h │ │ │ ├── PCGExStringSelfCompareFilter.h │ │ │ ├── PCGExTensorDotFilter.h │ │ │ ├── PCGExTimeFilter.h │ │ │ ├── PCGExValueHashFilter.h │ │ │ └── PCGExWithinRangeFilter.h │ │ ├── PCGExAttributeHash.h │ │ ├── PCGExAttributeRemap.h │ │ ├── PCGExAttributeStats.h │ │ ├── PCGExAttributesToTags.h │ │ ├── PCGExBitmaskMerge.h │ │ ├── PCGExBitwiseOperation.h │ │ ├── PCGExBlendAttributes.h │ │ ├── PCGExBranchOnDataAttribute.h │ │ ├── PCGExCherryPickPoints.h │ │ ├── PCGExCollocationCount.h │ │ ├── PCGExCopyToPoints.h │ │ ├── PCGExDestroyActor.h │ │ ├── PCGExDiscardByOverlap.h │ │ ├── PCGExDiscardByPointCount.h │ │ ├── PCGExDiscardSame.h │ │ ├── PCGExFindPointOnBounds.h │ │ ├── PCGExFusePoints.h │ │ ├── PCGExGetGUID.h │ │ ├── PCGExIterations.h │ │ ├── PCGExMergePoints.h │ │ ├── PCGExMergePointsByTag.h │ │ ├── PCGExMetaCleanup.h │ │ ├── PCGExModularPartitionByValues.h │ │ ├── PCGExModularSortPoints.h │ │ ├── PCGExPartition.h │ │ ├── PCGExPartitionByValues.h │ │ ├── PCGExPointsToBounds.h │ │ ├── PCGExRecursionTracker.h │ │ ├── PCGExReduceDataAttribute.h │ │ ├── PCGExRefreshSeed.h │ │ ├── PCGExReversePointOrder.h │ │ ├── PCGExSortCollections.h │ │ ├── PCGExSortPoints.h │ │ ├── PCGExSpatialTriage.h │ │ ├── PCGExUberBranch.h │ │ ├── PCGExUberFilter.h │ │ ├── PCGExUberFilterCollections.h │ │ ├── PCGExWriteGUID.h │ │ ├── PCGExWriteIndex.h │ │ ├── PCGExWriteStates.h │ │ └── Pickers │ │ │ ├── PCGExPicker.h │ │ │ ├── PCGExPickerAttributeSet.h │ │ │ ├── PCGExPickerAttributeSetRanges.h │ │ │ ├── PCGExPickerConstant.h │ │ │ ├── PCGExPickerConstantRange.h │ │ │ └── PCGExPickerFactoryProvider.h │ │ ├── PCGEx.h │ │ ├── PCGExBroadcast.h │ │ ├── PCGExCommon.h │ │ ├── PCGExCompare.h │ │ ├── PCGExContext.h │ │ ├── PCGExElement.h │ │ ├── PCGExFactories.h │ │ ├── PCGExFactoryProvider.h │ │ ├── PCGExGlobalSettings.h │ │ ├── PCGExH.h │ │ ├── PCGExHelpers.h │ │ ├── PCGExInstancedFactory.h │ │ ├── PCGExLabels.h │ │ ├── PCGExMT.h │ │ ├── PCGExMath.h │ │ ├── PCGExMathBounds.h │ │ ├── PCGExMathMean.h │ │ ├── PCGExOctree.h │ │ ├── PCGExOperation.h │ │ ├── PCGExPointsMT.h │ │ ├── PCGExPointsProcessor.h │ │ ├── PCGExPropertyHelpers.h │ │ ├── PCGExRandom.h │ │ ├── PCGExScopedContainers.h │ │ ├── PCGExSettings.h │ │ ├── PCGExSortHelpers.h │ │ ├── PCGExSorting.h │ │ ├── PCGExSortingRuleProvider.h │ │ ├── PCGExSubSystem.h │ │ ├── PCGExVersion.h │ │ ├── PCGExtendedToolkit.h │ │ ├── Paths │ │ ├── Orient │ │ │ ├── PCGExOrientAverage.h │ │ │ ├── PCGExOrientLookAt.h │ │ │ ├── PCGExOrientOperation.h │ │ │ └── PCGExOrientWeighted.h │ │ ├── PCGExAttributeRolling.h │ │ ├── PCGExBevelPath.h │ │ ├── PCGExBlendPath.h │ │ ├── PCGExBoundsPathIntersection.h │ │ ├── PCGExCreateSpline.h │ │ ├── PCGExExtrudeTensors.h │ │ ├── PCGExFuseCollinear.h │ │ ├── PCGExOffsetPath.h │ │ ├── PCGExOrient.h │ │ ├── PCGExPathCrossings.h │ │ ├── PCGExPathInsert.h │ │ ├── PCGExPathProcessor.h │ │ ├── PCGExPathResample.h │ │ ├── PCGExPathShift.h │ │ ├── PCGExPathShrink.h │ │ ├── PCGExPathSlide.h │ │ ├── PCGExPathSolidify.h │ │ ├── PCGExPathSplineMesh.h │ │ ├── PCGExPathSplineMeshSimple.h │ │ ├── PCGExPathStitch.h │ │ ├── PCGExPathToClusters.h │ │ ├── PCGExPaths.h │ │ ├── PCGExSmooth.h │ │ ├── PCGExSplineToPath.h │ │ ├── PCGExSplitPath.h │ │ ├── PCGExSubdivide.h │ │ ├── PCGExWritePathProperties.h │ │ ├── PCGExWriteTangents.h │ │ ├── Smoothing │ │ │ ├── PCGExMovingAverageSmoothing.h │ │ │ ├── PCGExRadiusSmoothing.h │ │ │ └── PCGExSmoothingInstancedFactory.h │ │ ├── SubPoints │ │ │ ├── DataBlending │ │ │ │ ├── PCGExSubPointsBlendInheritEnd.h │ │ │ │ ├── PCGExSubPointsBlendInheritStart.h │ │ │ │ ├── PCGExSubPointsBlendInterpolate.h │ │ │ │ ├── PCGExSubPointsBlendNone.h │ │ │ │ └── PCGExSubPointsBlendOperation.h │ │ │ └── PCGExSubPointsInstancedFactory.h │ │ └── Tangents │ │ │ ├── PCGExTangentsAuto.h │ │ │ ├── PCGExTangentsCatmullRom.h │ │ │ ├── PCGExTangentsFromNeighbors.h │ │ │ ├── PCGExTangentsFromTransform.h │ │ │ ├── PCGExTangentsInstancedFactory.h │ │ │ └── PCGExTangentsZero.h │ │ ├── Sampling │ │ ├── Neighbors │ │ │ ├── PCGExNeighborSampleAttribute.h │ │ │ ├── PCGExNeighborSampleBlend.h │ │ │ ├── PCGExNeighborSampleFactoryProvider.h │ │ │ ├── PCGExNeighborSampleFilters.h │ │ │ └── PCGExNeighborSampleProperties.h │ │ ├── PCGExGetTextureData.h │ │ ├── PCGExPackActorData.h │ │ ├── PCGExSampleInsidePath.h │ │ ├── PCGExSampleNearestBounds.h │ │ ├── PCGExSampleNearestPath.h │ │ ├── PCGExSampleNearestPoint.h │ │ ├── PCGExSampleNearestSpline.h │ │ ├── PCGExSampleNearestSurface.h │ │ ├── PCGExSampleNeighbors.h │ │ ├── PCGExSampleOverlapStats.h │ │ ├── PCGExSampleSockets.h │ │ ├── PCGExSampleSurfaceGuided.h │ │ ├── PCGExSampleTexture.h │ │ ├── PCGExSampleVtxByID.h │ │ ├── PCGExSampling.h │ │ ├── PCGExSelfPruning.h │ │ └── PCGExTexParamFactoryProvider.h │ │ ├── Shapes │ │ ├── Builders │ │ │ ├── PCGExShapeCircle.h │ │ │ ├── PCGExShapeFiblat.h │ │ │ ├── PCGExShapeGrid.h │ │ │ └── PCGExShapePolygon.h │ │ ├── PCGExCreateShapes.h │ │ ├── PCGExShapeBuilderFactoryProvider.h │ │ ├── PCGExShapeBuilderOperation.h │ │ ├── PCGExShapeProcessor.h │ │ └── PCGExShapes.h │ │ ├── System │ │ └── PCGExWaitForPCGData.h │ │ ├── Topology │ │ ├── PCGExDynamicMeshComponent.h │ │ ├── PCGExSpawnDynamicMesh.h │ │ ├── PCGExToggleTopology.h │ │ ├── PCGExTopology.h │ │ ├── PCGExTopologyClusterSurface.h │ │ ├── PCGExTopologyEdgesProcessor.h │ │ ├── PCGExTopologyPathSurface.h │ │ └── PCGExTopologyPointSurface.h │ │ └── Transform │ │ ├── PCGExBestMatchAxis.h │ │ ├── PCGExBoundsAxisToPoints.h │ │ ├── PCGExBoundsToPoints.h │ │ ├── PCGExCopyToPaths.h │ │ ├── PCGExFitting.h │ │ ├── PCGExFlatProjection.h │ │ ├── PCGExLloydRelax.h │ │ ├── PCGExLloydRelax2D.h │ │ ├── PCGExMovePivot.h │ │ ├── PCGExNormalize.h │ │ ├── PCGExTensorsTransform.h │ │ ├── PCGExTransform.h │ │ ├── PCGExTransformPoints.h │ │ └── Tensors │ │ ├── PCGExTensor.h │ │ ├── PCGExTensorConstant.h │ │ ├── PCGExTensorFactoryProvider.h │ │ ├── PCGExTensorFlow.h │ │ ├── PCGExTensorHandler.h │ │ ├── PCGExTensorInertia.h │ │ ├── PCGExTensorInertiaConstant.h │ │ ├── PCGExTensorNull.h │ │ ├── PCGExTensorOperation.h │ │ ├── PCGExTensorPathFlow.h │ │ ├── PCGExTensorPathPole.h │ │ ├── PCGExTensorPole.h │ │ ├── PCGExTensorSpin.h │ │ ├── PCGExTensorSplineFactoryProvider.h │ │ ├── PCGExTensorSplineFlow.h │ │ ├── PCGExTensorSplinePole.h │ │ └── Samplers │ │ ├── PCGExTensorSampler.h │ │ ├── PCGExTensorSamplerRK4.h │ │ └── PCGExTensorSamplerSixPoints.h ├── PCGExtendedToolkitEditor │ ├── PCGExtendedToolkitEditor.Build.cs │ ├── Private │ │ ├── DataViz │ │ │ └── PCGExSpatialDataVisualization.cpp │ │ ├── Details │ │ │ ├── Actions │ │ │ │ └── PCGExActorDataPackerActions.cpp │ │ │ ├── Bitmask │ │ │ │ ├── PCGExBitmaskActions.cpp │ │ │ │ ├── PCGExBitmaskCustomization.cpp │ │ │ │ ├── PCGExBitmaskEntryCustomization.cpp │ │ │ │ ├── PCGExBitmaskRefCustomization.cpp │ │ │ │ ├── PCGExClampedBitCustomization.cpp │ │ │ │ └── PCGExClampedBitOpCustomization.cpp │ │ │ ├── Collections │ │ │ │ ├── PCGExActorCollectionActions.cpp │ │ │ │ ├── PCGExActorCollectionEditor.cpp │ │ │ │ ├── PCGExAssetCollectionEditor.cpp │ │ │ │ ├── PCGExAssetEntryCustomization.cpp │ │ │ │ ├── PCGExAssetGrammarCustomization.cpp │ │ │ │ ├── PCGExCollectionGrammarCustomization.cpp │ │ │ │ ├── PCGExFittingVariationsCustomization.cpp │ │ │ │ ├── PCGExMaterialPicksCustomization.cpp │ │ │ │ ├── PCGExMeshCollectionActions.cpp │ │ │ │ └── PCGExMeshCollectionEditor.cpp │ │ │ ├── Enums │ │ │ │ ├── PCGExGridEnumCustomization.cpp │ │ │ │ └── PCGExInlineEnumCustomization.cpp │ │ │ ├── InputSettings │ │ │ │ ├── PCGExClampDetailsCustomization.cpp │ │ │ │ ├── PCGExCompareShorthandsCustomization.cpp │ │ │ │ └── PCGExInputShorthandsCustomization.cpp │ │ │ ├── PCGExDetailsCustomization.cpp │ │ │ └── Tuple │ │ │ │ └── PCGExTupleBodyCustomization.cpp │ │ ├── PCGExEditorMenuUtils.cpp │ │ ├── PCGExGlobalEditorSettings.cpp │ │ └── PCGExtendedToolkitEditor.cpp │ └── Public │ │ ├── DataViz │ │ └── PCGExSpatialDataVisualization.h │ │ ├── Details │ │ ├── Actions │ │ │ └── PCGExActorDataPackerActions.h │ │ ├── Bitmask │ │ │ ├── PCGExBitmaskActions.h │ │ │ ├── PCGExBitmaskCustomization.h │ │ │ ├── PCGExBitmaskEntryCustomization.h │ │ │ ├── PCGExBitmaskRefCustomization.h │ │ │ ├── PCGExClampedBitCustomization.h │ │ │ └── PCGExClampedBitOpCustomization.h │ │ ├── Collections │ │ │ ├── PCGExActorCollectionActions.h │ │ │ ├── PCGExActorCollectionEditor.h │ │ │ ├── PCGExAssetCollectionEditor.h │ │ │ ├── PCGExAssetEntryCustomization.h │ │ │ ├── PCGExAssetGrammarCustomization.h │ │ │ ├── PCGExCollectionGrammarCustomization.h │ │ │ ├── PCGExFittingVariationsCustomization.h │ │ │ ├── PCGExMaterialPicksCustomization.h │ │ │ ├── PCGExMeshCollectionActions.h │ │ │ └── PCGExMeshCollectionEditor.h │ │ ├── Enums │ │ │ ├── PCGExGridEnumCustomization.h │ │ │ └── PCGExInlineEnumCustomization.h │ │ ├── InputSettings │ │ │ ├── PCGExClampDetailsCustomization.h │ │ │ ├── PCGExCompareShorthandsCustomization.h │ │ │ └── PCGExInputShorthandsCustomization.h │ │ ├── PCGExCustomizationMacros.h │ │ ├── PCGExDetailsCustomization.h │ │ └── Tuple │ │ │ └── PCGExTupleBodyCustomization.h │ │ ├── PCGExEditorMenuUtils.h │ │ ├── PCGExGlobalEditorSettings.h │ │ └── PCGExtendedToolkitEditor.h └── ThirdParty │ └── Delaunator │ ├── LICENSE │ ├── README.md │ ├── THIRD-PARTY-NOTICES │ └── include │ └── delaunator.hpp └── THIRD_PARTY_NOTICE.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: nebukam 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Config/DefaultPCGExtendedToolkit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Config/DefaultPCGExtendedToolkit.ini -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Content/ActorDataPackers/DP_AttributesToTags.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/ActorDataPackers/DP_AttributesToTags.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExGraphBalance_AngleOnly.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExGraphBalance_AngleOnly.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExGraphBalance_Default.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExGraphBalance_Default.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExGraphBalance_DistanceOnly.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExGraphBalance_DistanceOnly.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExSteepness_Default.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExSteepness_Default.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExWeightDistribution_Constrast_Inv.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExWeightDistribution_Constrast_Inv.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExWeightDistribution_Expo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExWeightDistribution_Expo.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExWeightDistribution_Expo_Inv.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExWeightDistribution_Expo_Inv.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExWeightDistribution_Linear.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExWeightDistribution_Linear.uasset -------------------------------------------------------------------------------- /Content/Curves/FC_PCGExWeightDistribution_Linear_Inv.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Curves/FC_PCGExWeightDistribution_Linear_Inv.uasset -------------------------------------------------------------------------------- /Content/Data/Bitmasks/PCGEx_3DCompass.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Data/Bitmasks/PCGEx_3DCompass.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/BitmaskFilterPresets/PCGEx_Filter_DeadEnd_X.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/BitmaskFilterPresets/PCGEx_Filter_DeadEnd_X.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/BitmaskFilterPresets/PCGEx_Filter_DeadEnd_Y.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/BitmaskFilterPresets/PCGEx_Filter_DeadEnd_Y.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/BitmaskFilterPresets/PCGEx_Filter_DeadEnd_Z.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/BitmaskFilterPresets/PCGEx_Filter_DeadEnd_Z.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/FilterPresets/PCGEx_Filter_FirstAndLast.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/FilterPresets/PCGEx_Filter_FirstAndLast.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/FilterPresets/PCGEx_Pickers_FirstAndLast.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/FilterPresets/PCGEx_Pickers_FirstAndLast.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_DebugBounds.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_DebugBounds.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_DebugEdges.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_DebugEdges.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_DebugFilters.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_DebugFilters.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_DebugHeuristics.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_DebugHeuristics.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_DebugPaths.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_DebugPaths.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_DebugSphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_DebugSphere.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_PruneEdgeByLength_Replacement.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_PruneEdgeByLength_Replacement.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/PCGEx_SolidifyEdges.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/PCGEx_SolidifyEdges.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/ProbePresets/PCGEx_Probes_Corners.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/ProbePresets/PCGEx_Probes_Corners.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/ProbePresets/PCGEx_Probes_Cube.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/ProbePresets/PCGEx_Probes_Cube.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/ProbePresets/PCGEx_Probes_Edges_XY.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/ProbePresets/PCGEx_Probes_Edges_XY.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/ProbePresets/PCGEx_Probes_Edges_XZ.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/ProbePresets/PCGEx_Probes_Edges_XZ.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/ProbePresets/PCGEx_Probes_Edges_YZ.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/ProbePresets/PCGEx_Probes_Edges_YZ.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/ProbePresets/PCGEx_Probes_Faces.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/ProbePresets/PCGEx_Probes_Faces.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/SpawnPCGGraph/BP_PCGExHostActor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/SpawnPCGGraph/BP_PCGExHostActor.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/SpawnPCGGraph/PCGEx_SpawnPCGGraph.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/SpawnPCGGraph/PCGEx_SpawnPCGGraph.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEX_ParcelSplit_Recursive.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEX_ParcelSplit_Recursive.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_3DSpatialNoise.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_3DSpatialNoise.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_BoundsCrossSection.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_BoundsCrossSection.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_ConcaveHull2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_ConcaveHull2D.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_CookieCut.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_CookieCut.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_FilterAttributeSet.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_FilterAttributeSet.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_MergeCells.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_MergeCells.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_MergeCells_Clusters.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_MergeCells_Clusters.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_MergeCells_Loop_Clusters.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_MergeCells_Loop_Clusters.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_MergePaths.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_MergePaths.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_Outlines2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_Outlines2D.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_Parcels2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_Parcels2D.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_PathTesselate.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_PathTesselate.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_PrunedDelaunay.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_PrunedDelaunay.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_RandomColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_RandomColor.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_RandomRotationSnap.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_RandomRotationSnap.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_RemapData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_RemapData.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_SetColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_SetColor.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_SortAttributeSet.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_SortAttributeSet.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_TestAttributeSet.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_TestAttributeSet.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_UberFilter_SplineCollection.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_UberFilter_SplineCollection.uasset -------------------------------------------------------------------------------- /Content/Subgraphs/Utils/PCGEx_WrappingCircle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Content/Subgraphs/Utils/PCGEx_WrappingCircle.uasset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /PCGExtendedToolkit.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/PCGExtendedToolkit.uplugin -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExActorCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExActorCollection.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExAssetCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExAssetCollection.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExBeacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExBeacon.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExBitmaskCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExBitmaskCollection.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExCustomActorDataPacker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExCustomActorDataPacker.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExCustomGraphBuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExCustomGraphBuilder.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExCustomGraphSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExCustomGraphSettings.png -------------------------------------------------------------------------------- /Resources/Icons/PCGExMeshCollection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGExMeshCollection.png -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AddContentBrowserSelection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AddContentBrowserSelection.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AfterStaging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AfterStaging.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_All.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_All.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Ascending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Ascending.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Attribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Attribute.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AxisOrder_XYZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AxisOrder_XYZ.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AxisOrder_XZY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AxisOrder_XZY.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AxisOrder_YXZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AxisOrder_YXZ.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AxisOrder_YZX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AxisOrder_YZX.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AxisOrder_ZXY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AxisOrder_ZXY.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_AxisOrder_ZYX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_AxisOrder_ZYX.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_BeforeStaging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_BeforeStaging.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Bit_Direct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Bit_Direct.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Bit_Mutations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Bit_Mutations.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Bounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Bounds.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_CCW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_CCW.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_CW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_CW.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Ceil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Ceil.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Center.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_CollectionRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_CollectionRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Constant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Constant.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_DataAttribute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_DataAttribute.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Default.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_DensityBounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_DensityBounds.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Descending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Descending.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Disabled.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Dist_BoxBounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Dist_BoxBounds.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Dist_Center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Dist_Center.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Dist_SphereBounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Dist_SphereBounds.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Edges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Edges.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Enabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Enabled.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Entries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Entries.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_EntryRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_EntryRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Exclude.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Exclude.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Fit_Average.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Fit_Average.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Fit_Fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Fit_Fill.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Fit_Max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Fit_Max.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Fit_Min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Fit_Min.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Fit_None.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Fit_None.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Fixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Fixed.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Flexible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Flexible.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Floor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Floor.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_From_Center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_From_Center.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_From_Custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_From_Custom.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_From_Max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_From_Max.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_From_Min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_From_Min.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_From_Pivot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_From_Pivot.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Include.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Include.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_MissingData_Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_MissingData_Error.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_MissingData_Fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_MissingData_Fail.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_MissingData_Pass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_MissingData_Pass.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_MultiMat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_MultiMat.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_NoSnapping.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_NoSnapping.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_NormalizeWeight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_NormalizeWeight.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Numeric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Numeric.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RebuildStaging.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RebuildStaging.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RebuildStagingProject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RebuildStagingProject.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RebuildStagingRecursive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RebuildStagingRecursive.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_X.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_XY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_XY.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_XZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_XZ.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_Y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_Y.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_YX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_YX.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_YZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_YZ.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_Z.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_ZX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_ZX.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_RotOrder_ZY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_RotOrder_ZY.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Round.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_STF_Individual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_STF_Individual.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_STF_None.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_STF_None.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_STF_Uniform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_STF_Uniform.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_ScaledBounds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_ScaledBounds.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Settings.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_SingleMat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_SingleMat.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Snap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Snap.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_SnapOffset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_SnapOffset.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_SnapResult.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_SnapResult.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Text.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_To_Center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_To_Center.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_To_Custom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_To_Custom.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_To_Max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_To_Max.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_To_Min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_To_Min.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_To_Pivot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_To_Pivot.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_To_Same.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_To_Same.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Unchanged.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Unchanged.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Vtx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Vtx.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_X.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_X.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Y.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Editor_Z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Editor_Z.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Action.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_BlendOp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_BlendOp.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_ClusterState.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_ClusterState.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Edges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Edges.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_FillControl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_FillControl.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Filter.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_FilterCollection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_FilterCollection.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_FilterEdge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_FilterEdge.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_FilterPoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_FilterPoint.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_FilterVtx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_FilterVtx.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Heuristics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Heuristics.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_MatchRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_MatchRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_NeighborSampler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_NeighborSampler.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_PartitionRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_PartitionRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Picker.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_PointState.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_PointState.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Probe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Probe.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_RecursionTracker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_RecursionTracker.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Shape.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_SortRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_SortRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Special.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Special.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Tensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Tensor.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_TexParam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_TexParam.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_Vtx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_Vtx.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_IN_VtxProperty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_IN_VtxProperty.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Action.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_BlendOp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_BlendOp.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_ClusterState.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_ClusterState.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Edges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Edges.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_FillControl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_FillControl.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Filter.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_FilterCollection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_FilterCollection.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_FilterEdge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_FilterEdge.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_FilterPoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_FilterPoint.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_FilterVtx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_FilterVtx.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Heuristics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Heuristics.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_MatchRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_MatchRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_NeighborSampler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_NeighborSampler.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_PartitionRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_PartitionRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Picker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Picker.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_PointState.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_PointState.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Probe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Probe.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_RecursionTracker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_RecursionTracker.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Shape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Shape.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_SortRule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_SortRule.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Special.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Special.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Tensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Tensor.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_TexParam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_TexParam.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_Vtx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_Vtx.svg -------------------------------------------------------------------------------- /Resources/Icons/PCGEx_Pin_OUT_VtxProperty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Resources/Icons/PCGEx_Pin_OUT_VtxProperty.svg -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/SUPPORTERS.md -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/PCGExtendedToolkit.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/PCGExtendedToolkit.Build.cs -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Actions/PCGExActionWriteValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Actions/PCGExActionWriteValues.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Actions/PCGExBatchActions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Actions/PCGExBatchActions.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/AssetStaging/PCGExAssetStaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/AssetStaging/PCGExAssetStaging.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/AssetStaging/PCGExStaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/AssetStaging/PCGExStaging.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Collections/PCGExAssetGrammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Collections/PCGExAssetGrammar.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Collections/PCGExAssetLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Collections/PCGExAssetLoader.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Constants/PCGExBitmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Constants/PCGExBitmask.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Constants/PCGExConstantEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Constants/PCGExConstantEnum.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Constants/PCGExConstants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Constants/PCGExConstants.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Constants/PCGExTuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Constants/PCGExTuple.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/Blending/PCGExBlendLerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/Blending/PCGExBlendLerp.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/Blending/PCGExBlendMinMax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/Blending/PCGExBlendMinMax.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/Blending/PCGExBlendModes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/Blending/PCGExBlendModes.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/Matching/PCGExMatchRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/Matching/PCGExMatchRandom.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/Matching/PCGExMatching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/Matching/PCGExMatching.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExAttributeHasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExAttributeHasher.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExAttributeHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExAttributeHelpers.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExAttributeMapHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExAttributeMapHelpers.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExDataFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExDataFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExDataForward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExDataForward.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExDataHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExDataHelpers.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExDataPreloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExDataPreloader.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExDataTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExDataTag.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExDataValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExDataValue.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExFilterGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExFilterGroup.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExPointData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExPointData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExPointElements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExPointElements.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExPointFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExPointFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExPointIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExPointIO.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExPointIOMerger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExPointIOMerger.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExPointStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExPointStates.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExProxyData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExProxyData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExProxyDataHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExProxyDataHelpers.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExSettingsOverrides.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExSettingsOverrides.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExUnionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExUnionData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/PCGExValueHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/PCGExValueHash.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/Sharing/PCGExBeacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/Sharing/PCGExBeacon.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Data/Sharing/PCGExDataSharing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Data/Sharing/PCGExDataSharing.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Debug/PCGExDrawAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Debug/PCGExDrawAttributes.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Debug/PCGExFlushDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Debug/PCGExFlushDebug.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsAttributes.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsAxis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsAxis.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsBitmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsBitmask.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsCollision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsCollision.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsDistances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsDistances.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsFiltering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsFiltering.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsFusing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsFusing.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsGraph.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsNoise.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsRelax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsRelax.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsSettings.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Details/PCGExDetailsStaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Details/PCGExDetailsStaging.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Geometry/PCGExGeo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Geometry/PCGExGeo.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoDelaunay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoDelaunay.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoMesh.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoPointBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoPointBox.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoTasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoTasks.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoVoronoi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Geometry/PCGExGeoVoronoi.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Data/PCGExClusterData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Data/PCGExClusterData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExEdgeOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExEdgeOrder.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExFilterVtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExFilterVtx.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExRefineEdges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExRefineEdges.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExRelaxClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Edges/PCGExRelaxClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Filters/PCGExAdjacency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Filters/PCGExAdjacency.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/FloodFill/PCGExFloodFill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/FloodFill/PCGExFloodFill.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExBuildCustomGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExBuildCustomGraph.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExChain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExChain.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExCluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExCluster.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExClusterCentrality.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExClusterCentrality.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExClusterMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExClusterMT.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExClusterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExClusterUtils.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExConnectClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExConnectClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExConnectPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExConnectPoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExCutClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExCutClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExEdge.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExEdgesProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExEdgesProcessor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExFindClustersData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExFindClustersData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExFuseClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExFuseClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExGraph.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExIntersections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExIntersections.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExMakeClustersUnique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExMakeClustersUnique.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExMergeVertices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExMergeVertices.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExMeshToClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExMeshToClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExPackClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExPackClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExPartitionVertices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExPartitionVertices.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExPickClosestClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExPickClosestClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExSanitizeClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExSanitizeClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExSimplifyClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExSimplifyClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExUnionProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExUnionProcessor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/PCGExUnpackClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/PCGExUnpackClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Pathfinding/PCGExNavmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Pathfinding/PCGExNavmesh.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Probes/PCGExProbeClosest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Probes/PCGExProbeClosest.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Probes/PCGExProbeIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Probes/PCGExProbeIndex.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Graph/Probes/PCGExProbeTensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Graph/Probes/PCGExProbeTensor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Layout/PCGExBinPacking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Layout/PCGExBinPacking.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Layout/PCGExLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Layout/PCGExLayout.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExAngleFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExAngleFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExBoundsFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExBoundsFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExDotFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExDotFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExMeanFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExMeanFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExPickerFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExPickerFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExRandomFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExRandomFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExTimeFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/Filters/PCGExTimeFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExAttributeHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExAttributeHash.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExAttributeRemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExAttributeRemap.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExAttributeStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExAttributeStats.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExAttributesToTags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExAttributesToTags.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExBitmaskMerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExBitmaskMerge.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExBitwiseOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExBitwiseOperation.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExBlendAttributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExBlendAttributes.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExCherryPickPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExCherryPickPoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExCollocationCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExCollocationCount.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExCopyToPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExCopyToPoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExDestroyActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExDestroyActor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExDiscardByOverlap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExDiscardByOverlap.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExDiscardByPointCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExDiscardByPointCount.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExDiscardSame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExDiscardSame.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExFindPointOnBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExFindPointOnBounds.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExFusePoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExFusePoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExGetGUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExGetGUID.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExIterations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExIterations.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExMergePoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExMergePoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExMergePointsByTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExMergePointsByTag.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExMetaCleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExMetaCleanup.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExModularSortPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExModularSortPoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExPartitionByValues.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExPartitionByValues.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExPointsToBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExPointsToBounds.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExRecursionTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExRecursionTracker.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExReduceDataAttribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExReduceDataAttribute.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExRefreshSeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExRefreshSeed.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExReversePointOrder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExReversePointOrder.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExSortCollections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExSortCollections.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExSortPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExSortPoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExSpatialTriage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExSpatialTriage.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExUberBranch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExUberBranch.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExUberFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExUberFilter.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExWriteGUID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExWriteGUID.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExWriteIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExWriteIndex.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Misc/PCGExWriteStates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Misc/PCGExWriteStates.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGEx.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExBroadcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExBroadcast.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExCommon.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExCompare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExCompare.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExContext.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExElement.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExFactories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExFactories.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExFactoryProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExFactoryProvider.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExGlobalSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExGlobalSettings.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExHelpers.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExInstancedFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExInstancedFactory.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExMT.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExMath.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExMathBounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExMathBounds.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExMathMean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExMathMean.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExOperation.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExPointsMT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExPointsMT.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExPointsProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExPointsProcessor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExPropertyHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExPropertyHelpers.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExRandom.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExSettings.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExSorting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExSorting.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExSortingRuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExSortingRuleProvider.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExSubSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExSubSystem.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/PCGExtendedToolkit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/PCGExtendedToolkit.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExAttributeRolling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExAttributeRolling.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExBevelPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExBevelPath.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExBlendPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExBlendPath.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExCreateSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExCreateSpline.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExExtrudeTensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExExtrudeTensors.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExFuseCollinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExFuseCollinear.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExOffsetPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExOffsetPath.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExOrient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExOrient.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathCrossings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathCrossings.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathInsert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathInsert.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathProcessor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathResample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathResample.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathShift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathShift.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathShrink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathShrink.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathSlide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathSlide.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathSolidify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathSolidify.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathSplineMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathSplineMesh.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathStitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathStitch.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPathToClusters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPathToClusters.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExPaths.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExSmooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExSmooth.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExSplineToPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExSplineToPath.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExSplitPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExSplitPath.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExSubdivide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExSubdivide.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExWritePathProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExWritePathProperties.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Paths/PCGExWriteTangents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Paths/PCGExWriteTangents.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExGetTextureData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExGetTextureData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExPackActorData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExPackActorData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleInsidePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleInsidePath.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleNeighbors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleNeighbors.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleSockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleSockets.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleTexture.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleVtxByID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExSampleVtxByID.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExSampling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExSampling.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Sampling/PCGExSelfPruning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Sampling/PCGExSelfPruning.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Shapes/Builders/PCGExShapeGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Shapes/Builders/PCGExShapeGrid.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Shapes/PCGExCreateShapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Shapes/PCGExCreateShapes.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Shapes/PCGExShapeProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Shapes/PCGExShapeProcessor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Shapes/PCGExShapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Shapes/PCGExShapes.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/System/PCGExWaitForPCGData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/System/PCGExWaitForPCGData.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Topology/PCGExSpawnDynamicMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Topology/PCGExSpawnDynamicMesh.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Topology/PCGExToggleTopology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Topology/PCGExToggleTopology.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Topology/PCGExTopology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Topology/PCGExTopology.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExBestMatchAxis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExBestMatchAxis.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExBoundsToPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExBoundsToPoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExCopyToPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExCopyToPaths.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExFitting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExFitting.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExFlatProjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExFlatProjection.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExLloydRelax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExLloydRelax.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExLloydRelax2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExLloydRelax2D.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExMovePivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExMovePivot.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExNormalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExNormalize.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExTransform.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/PCGExTransformPoints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/PCGExTransformPoints.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Private/Transform/Tensors/PCGExTensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Private/Transform/Tensors/PCGExTensor.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Actions/PCGExActionWriteValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Actions/PCGExActionWriteValues.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Actions/PCGExBatchActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Actions/PCGExBatchActions.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/AssetStaging/PCGExAssetStaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/AssetStaging/PCGExAssetStaging.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/AssetStaging/PCGExSocketStaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/AssetStaging/PCGExSocketStaging.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/AssetStaging/PCGExStaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/AssetStaging/PCGExStaging.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Collections/PCGExActorCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Collections/PCGExActorCollection.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Collections/PCGExAssetCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Collections/PCGExAssetCollection.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Collections/PCGExAssetGrammar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Collections/PCGExAssetGrammar.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Collections/PCGExAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Collections/PCGExAssetLoader.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Collections/PCGExMeshCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Collections/PCGExMeshCollection.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Constants/PCGExBitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Constants/PCGExBitmask.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Constants/PCGExConstantEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Constants/PCGExConstantEnum.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Constants/PCGExConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Constants/PCGExConstants.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Constants/PCGExTuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Constants/PCGExTuple.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Blending/PCGExBlendLerp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Blending/PCGExBlendLerp.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Blending/PCGExBlendMinMax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Blending/PCGExBlendMinMax.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Blending/PCGExBlendModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Blending/PCGExBlendModes.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Blending/PCGExDataBlending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Blending/PCGExDataBlending.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Blending/PCGExUnionBlender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Blending/PCGExUnionBlender.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchByIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchByIndex.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchCopyTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchCopyTags.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchRandom.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchSharedTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchSharedTag.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchTagToAttr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatchTagToAttr.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Matching/PCGExMatching.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExAttributeHasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExAttributeHasher.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExAttributeHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExAttributeHelpers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExAttributeMapHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExAttributeMapHelpers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExBufferHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExBufferHelper.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExDataFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExDataFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExDataForward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExDataForward.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExDataHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExDataHelpers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExDataPreloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExDataPreloader.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExDataTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExDataTag.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExDataValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExDataValue.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExDefaultValueContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExDefaultValueContainer.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExFilterGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExFilterGroup.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExPointData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExPointData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExPointElements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExPointElements.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExPointFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExPointFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExPointIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExPointIO.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExPointIOMerger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExPointIOMerger.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExPointStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExPointStates.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExProxyData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExProxyData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExProxyDataHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExProxyDataHelpers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExSettingsOverrides.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExSettingsOverrides.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExUnionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExUnionData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/PCGExValueHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/PCGExValueHash.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Sharing/PCGExBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Sharing/PCGExBeacon.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Data/Sharing/PCGExDataSharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Data/Sharing/PCGExDataSharing.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Debug/PCGExDrawAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Debug/PCGExDrawAttributes.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Debug/PCGExFlushDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Debug/PCGExFlushDebug.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsAttributes.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsAxis.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsBitmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsBitmask.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsCluster.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsCollision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsCollision.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsDistances.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsDistances.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsFiltering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsFiltering.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsFusing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsFusing.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsGraph.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsIntersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsIntersection.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsNoise.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsRelax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsRelax.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsSettings.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsStaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsStaging.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExDetailsSubdivision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExDetailsSubdivision.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExMacros.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExSettingsMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExSettingsMacros.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Details/PCGExWaitMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Details/PCGExWaitMacros.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Geometry/PCGExGeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Geometry/PCGExGeo.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoDelaunay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoDelaunay.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoMesh.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoPointBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoPointBox.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoPrimtives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoPrimtives.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoTasks.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoVoronoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Geometry/PCGExGeoVoronoi.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Data/PCGExClusterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Data/PCGExClusterData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExEdgeOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExEdgeOrder.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExFilterVtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExFilterVtx.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExRefineEdges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExRefineEdges.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExRelaxClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExRelaxClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExSubdivideEdges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Edges/PCGExSubdivideEdges.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Filters/PCGExAdjacency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Filters/PCGExAdjacency.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Filters/PCGExClusterFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Filters/PCGExClusterFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/FloodFill/PCGExFloodFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/FloodFill/PCGExFloodFill.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExBreakClustersToPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExBreakClustersToPaths.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExBuildCustomGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExBuildCustomGraph.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExChain.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExCluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExCluster.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExClusterCentrality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExClusterCentrality.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExClusterMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExClusterMT.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExClusterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExClusterUtils.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExConnectClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExConnectClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExConnectPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExConnectPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExCopyClustersToPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExCopyClustersToPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExCutClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExCutClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExEdge.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExEdgeDirectionSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExEdgeDirectionSettings.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExEdgesProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExEdgesProcessor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExFindClustersData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExFindClustersData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExFuseClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExFuseClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExGraph.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExIntersections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExIntersections.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExMakeClustersUnique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExMakeClustersUnique.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExMergeVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExMergeVertices.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExMeshToClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExMeshToClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExPackClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExPackClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExPartitionVertices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExPartitionVertices.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExPickClosestClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExPickClosestClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExSanitizeClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExSanitizeClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExSimplifyClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExSimplifyClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExUnionProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExUnionProcessor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/PCGExUnpackClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/PCGExUnpackClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Pathfinding/PCGExNavmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Pathfinding/PCGExNavmesh.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeBitmasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeBitmasks.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeClosest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeClosest.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeDirection.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeIndex.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeOperation.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbeTensor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/Probes/PCGExProbing.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/States/PCGExAdjacencyStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/States/PCGExAdjacencyStates.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Graph/States/PCGExClusterStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Graph/States/PCGExClusterStates.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Layout/PCGExBinPacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Layout/PCGExBinPacking.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Layout/PCGExLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Layout/PCGExLayout.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExAngleFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExAngleFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExBitmaskFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExBitmaskFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExBoundsFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExBoundsFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExConstantFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExConstantFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExDistanceFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExDistanceFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExDotFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExDotFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExInclusionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExInclusionFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExMeanFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExMeanFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExPickerFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExPickerFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExRandomFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExRandomFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExTensorDotFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExTensorDotFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExTimeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExTimeFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExValueHashFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Filters/PCGExValueHashFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExAttributeHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExAttributeHash.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExAttributeRemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExAttributeRemap.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExAttributeStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExAttributeStats.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExAttributesToTags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExAttributesToTags.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExBitmaskMerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExBitmaskMerge.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExBitwiseOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExBitwiseOperation.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExBlendAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExBlendAttributes.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExBranchOnDataAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExBranchOnDataAttribute.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExCherryPickPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExCherryPickPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExCollocationCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExCollocationCount.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExCopyToPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExCopyToPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExDestroyActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExDestroyActor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExDiscardByOverlap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExDiscardByOverlap.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExDiscardByPointCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExDiscardByPointCount.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExDiscardSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExDiscardSame.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExFindPointOnBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExFindPointOnBounds.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExFusePoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExFusePoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExGetGUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExGetGUID.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExIterations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExIterations.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExMergePoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExMergePoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExMergePointsByTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExMergePointsByTag.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExMetaCleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExMetaCleanup.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExModularSortPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExModularSortPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExPartition.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExPartitionByValues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExPartitionByValues.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExPointsToBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExPointsToBounds.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExRecursionTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExRecursionTracker.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExReduceDataAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExReduceDataAttribute.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExRefreshSeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExRefreshSeed.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExReversePointOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExReversePointOrder.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExSortCollections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExSortCollections.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExSortPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExSortPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExSpatialTriage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExSpatialTriage.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExUberBranch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExUberBranch.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExUberFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExUberFilter.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExUberFilterCollections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExUberFilterCollections.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExWriteGUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExWriteGUID.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExWriteIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExWriteIndex.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/PCGExWriteStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/PCGExWriteStates.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Pickers/PCGExPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Pickers/PCGExPicker.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Misc/Pickers/PCGExPickerConstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Misc/Pickers/PCGExPickerConstant.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGEx.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExBroadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExBroadcast.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExCommon.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExCompare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExCompare.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExContext.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExElement.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExFactories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExFactories.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExFactoryProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExFactoryProvider.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExGlobalSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExGlobalSettings.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExH.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExHelpers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExInstancedFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExInstancedFactory.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExLabels.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExMT.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExMath.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExMathBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExMathBounds.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExMathMean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExMathMean.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExOctree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExOctree.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExOperation.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExPointsMT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExPointsMT.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExPointsProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExPointsProcessor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExPropertyHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExPropertyHelpers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExRandom.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExScopedContainers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExScopedContainers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExSettings.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExSortHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExSortHelpers.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExSorting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExSorting.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExSortingRuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExSortingRuleProvider.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExSubSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExSubSystem.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExVersion.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/PCGExtendedToolkit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/PCGExtendedToolkit.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientAverage.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientLookAt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientLookAt.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientOperation.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientWeighted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/Orient/PCGExOrientWeighted.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExAttributeRolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExAttributeRolling.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExBevelPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExBevelPath.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExBlendPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExBlendPath.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExBoundsPathIntersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExBoundsPathIntersection.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExCreateSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExCreateSpline.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExExtrudeTensors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExExtrudeTensors.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExFuseCollinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExFuseCollinear.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExOffsetPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExOffsetPath.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExOrient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExOrient.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathCrossings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathCrossings.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathInsert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathInsert.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathProcessor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathResample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathResample.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathShift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathShift.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathShrink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathShrink.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathSlide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathSlide.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathSolidify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathSolidify.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathSplineMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathSplineMesh.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathSplineMeshSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathSplineMeshSimple.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathStitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathStitch.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPathToClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPathToClusters.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExPaths.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExSmooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExSmooth.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExSplineToPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExSplineToPath.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExSplitPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExSplitPath.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExSubdivide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExSubdivide.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExWritePathProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExWritePathProperties.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/PCGExWriteTangents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/PCGExWriteTangents.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/Tangents/PCGExTangentsAuto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/Tangents/PCGExTangentsAuto.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Paths/Tangents/PCGExTangentsZero.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Paths/Tangents/PCGExTangentsZero.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExGetTextureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExGetTextureData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExPackActorData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExPackActorData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleInsidePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleInsidePath.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleNearestBounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleNearestBounds.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleNeighbors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleNeighbors.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleSockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleSockets.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleTexture.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleVtxByID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSampleVtxByID.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSampling.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Sampling/PCGExSelfPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Sampling/PCGExSelfPruning.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Shapes/Builders/PCGExShapeGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Shapes/Builders/PCGExShapeGrid.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Shapes/PCGExCreateShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Shapes/PCGExCreateShapes.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Shapes/PCGExShapeProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Shapes/PCGExShapeProcessor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Shapes/PCGExShapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Shapes/PCGExShapes.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/System/PCGExWaitForPCGData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/System/PCGExWaitForPCGData.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Topology/PCGExSpawnDynamicMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Topology/PCGExSpawnDynamicMesh.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Topology/PCGExToggleTopology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Topology/PCGExToggleTopology.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Topology/PCGExTopology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Topology/PCGExTopology.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExBestMatchAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExBestMatchAxis.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExBoundsToPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExBoundsToPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExCopyToPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExCopyToPaths.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExFitting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExFitting.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExFlatProjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExFlatProjection.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExLloydRelax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExLloydRelax.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExLloydRelax2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExLloydRelax2D.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExMovePivot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExMovePivot.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExNormalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExNormalize.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExTransform.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/PCGExTransformPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/PCGExTransformPoints.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkit/Public/Transform/Tensors/PCGExTensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkit/Public/Transform/Tensors/PCGExTensor.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkitEditor/PCGExtendedToolkitEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkitEditor/PCGExtendedToolkitEditor.Build.cs -------------------------------------------------------------------------------- /Source/PCGExtendedToolkitEditor/Private/PCGExEditorMenuUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkitEditor/Private/PCGExEditorMenuUtils.cpp -------------------------------------------------------------------------------- /Source/PCGExtendedToolkitEditor/Public/PCGExEditorMenuUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkitEditor/Public/PCGExEditorMenuUtils.h -------------------------------------------------------------------------------- /Source/PCGExtendedToolkitEditor/Public/PCGExtendedToolkitEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/PCGExtendedToolkitEditor/Public/PCGExtendedToolkitEditor.h -------------------------------------------------------------------------------- /Source/ThirdParty/Delaunator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/ThirdParty/Delaunator/LICENSE -------------------------------------------------------------------------------- /Source/ThirdParty/Delaunator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/ThirdParty/Delaunator/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/Delaunator/THIRD-PARTY-NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/ThirdParty/Delaunator/THIRD-PARTY-NOTICES -------------------------------------------------------------------------------- /Source/ThirdParty/Delaunator/include/delaunator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/Source/ThirdParty/Delaunator/include/delaunator.hpp -------------------------------------------------------------------------------- /THIRD_PARTY_NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nebukam/PCGExtendedToolkit/HEAD/THIRD_PARTY_NOTICE.md --------------------------------------------------------------------------------