From 09ed51c4324260215184c70fdab7ce114c560d93 Mon Sep 17 00:00:00 2001 From: Steve Streeting Date: Tue, 27 Aug 2024 12:27:37 +0100 Subject: [PATCH] Add FStevesEditorVisCapsule constructors --- Source/StevesUEHelpers/Public/StevesEditorVisComponent.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Source/StevesUEHelpers/Public/StevesEditorVisComponent.h b/Source/StevesUEHelpers/Public/StevesEditorVisComponent.h index 9a64b5a..fb16e32 100644 --- a/Source/StevesUEHelpers/Public/StevesEditorVisComponent.h +++ b/Source/StevesUEHelpers/Public/StevesEditorVisComponent.h @@ -241,6 +241,15 @@ struct STEVESUEHELPERS_API FStevesEditorVisCapsule : public FStevesEditorVisCyli { GENERATED_BODY() + FStevesEditorVisCapsule(const FVector& InLocation, float InHeight, float InRadius, const FRotator& InRot, + const FColor& InColour) : FStevesEditorVisCylinder(InLocation, InHeight, InRadius, InRot, InColour) + { + } + + FStevesEditorVisCapsule() : FStevesEditorVisCylinder() + { + } + }; USTRUCT(BlueprintType)