remove the variable names from the grab/touch signatures

This commit is contained in:
Mamadou Babaei
2023-05-19 18:13:46 +02:00
parent 5aec9088e7
commit b6707dd758
@@ -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()
{