From b6707dd758962b439e6c86bb30812fc3a51997f1 Mon Sep 17 00:00:00 2001 From: Mamadou Babaei Date: Mon, 8 May 2023 12:14:37 +0200 Subject: [PATCH] remove the variable names from the grab/touch signatures --- .../SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h b/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h index f63a4956..29231fad 100644 --- a/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h +++ b/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h @@ -54,8 +54,8 @@ class SENSEGLOVE_API ASGPawn : public APawn public: DECLARE_EVENT_FourParams( - ASGPawn, FGrabStateUpdatedEvent, const USGVirtualHandComponent*, - const AActor* ActorThumbCanGrab, const AActor* ActorIndexCanGrab, const AActor* ActorMiddleCanGrab); + ASGPawn, FGrabStateUpdatedEvent, + const USGVirtualHandComponent*, const AActor*, const AActor*, const AActor*); FGrabStateUpdatedEvent& OnGrabStateUpdated() { @@ -63,9 +63,8 @@ public: }; DECLARE_EVENT_SixParams( - ASGPawn, FTouchStateUpdatedEvent, const USGVirtualHandComponent*, - const AActor* ActorThumbTouching, const AActor* ActorIndexTouching, const AActor* ActorMiddleTouching, - const AActor* ActorRingTouching, const AActor* ActorPinkyTouching); + ASGPawn, FTouchStateUpdatedEvent, + const USGVirtualHandComponent*, const AActor*, const AActor*, const AActor*, const AActor*, const AActor*); FTouchStateUpdatedEvent& OnTouchStateUpdated() {