add a missing blueprint ufunction specifier

This commit is contained in:
Mamadou Babaei
2026-02-24 13:15:36 +01:00
parent bf208cacda
commit 4d1c21b8c8
2 changed files with 6 additions and 3 deletions
@@ -92,7 +92,7 @@ bool UHapticsComponentKismetLibrary::SupportsCustomWaveform(
return HapticsComponent->SupportsCustomWaveform(AtLocation);
}
bool UHapticsComponentKismetLibrary::SendCustomWaveform(
bool UHapticsComponentKismetLibrary::SendCustomWaveform_OutWaveform_Location(
USGHapticsComponent* HapticsComponent,
USGCustomWaveform* OutWaveform, const ESGHapticLocation Location)
{
@@ -102,7 +102,10 @@ public:
* @param OutWaveform
* @param Location
*/
static bool SendCustomWaveform(UPARAM(ref) USGHapticsComponent* HapticsComponent,
UFUNCTION(BlueprintCallable, DisplayName="Send Custom Waveform",
Category="SenseGlove | Components | Haptics Component")
static bool SendCustomWaveform_OutWaveform_Location(
UPARAM(ref) USGHapticsComponent* HapticsComponent,
USGCustomWaveform* OutWaveform, ESGHapticLocation Location);
/**