Skip to content

Commit a0cbc08

Browse files
committed
Exposed tensors sampler parameters
1 parent 69346a4 commit a0cbc08

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

Plugins/PCGExtendedToolkit/Source/PCGExtendedToolkit/Public/Transform/Tensors/PCGExTensorHandler.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ struct /*PCGEXTENDEDTOOLKIT_API*/ FPCGExTensorSamplerDetails
2626
}
2727

2828
/** Sampler type */
29-
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Settings)
29+
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = Settings, meta = (PCG_Overridable))
3030
TSubclassOf<UPCGExTensorSampler> Sampler = UPCGExTensorSampler::StaticClass();
3131

3232
/** Sampling radius. Whether it has any effect depends on the selected sampler. */
33-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_NotOverridable))
33+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_Overridable))
3434
double Radius = 0;
3535
};
3636

@@ -49,23 +49,23 @@ struct /*PCGEXTENDEDTOOLKIT_API*/ FPCGExTensorHandlerDetails
4949
}
5050

5151
/** If enabled, sampling direction will be inverted. */
52-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_NotOverridable))
52+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_Overridable))
5353
bool bInvert = false;
5454

5555
/** If enabled, normalize sampling. This effectively negates the influence of effectors potency. */
56-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_NotOverridable))
56+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_Overridable))
5757
bool bNormalize = false;
5858

5959
/** Constant size applied after normalization. This will be scaled */
60-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_NotOverridable, DisplayName = " └─ Size", EditCondition="bNormalize", EditConditionHides))
60+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_Overridable, DisplayName = " └─ Size", EditCondition="bNormalize", EditConditionHides))
6161
double SizeConstant = 1;
6262

6363
/** Uniform scale factor applied to sampling after all other mutations are accounted for. */
64-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_NotOverridable))
64+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_Overridable))
6565
double UniformScale = 1;
6666

6767
/** Uniform scale factor applied to sampling after all other mutations are accounted for. */
68-
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_NotOverridable))
68+
UPROPERTY(BlueprintReadWrite, EditAnywhere, Category = Settings, meta = (PCG_Overridable))
6969
FPCGExTensorSamplerDetails SamplerSettings;
7070
};
7171

0 commit comments

Comments
 (0)