You can also provide default parameters to the existing constructor.
FCapsuleValues(float H = 1.0f, float R = 1.0f) {
Height = H;
Radius = R;
}
You can also provide default parameters to the existing constructor.
FCapsuleValues(float H = 1.0f, float R = 1.0f) {
Height = H;
Radius = R;
}