DRG-Femboy-Voice/Source/FSD/Public/AnimNotify_PlaySound2D.h
2025-04-15 12:39:31 -07:00

23 lines
655 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Animation/AnimNotifies/AnimNotify.h"
#include "AnimNotify_PlaySound2D.generated.h"
class USoundBase;
UCLASS(Blueprintable, CollapseCategories, MinimalAPI)
class UAnimNotify_PlaySound2D : public UAnimNotify {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
USoundBase* Sound;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float VolumeMultiplier;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float PitchMultiplier;
UAnimNotify_PlaySound2D();
};