53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "Pickup.h"
|
|
#include "HealthPickup.generated.h"
|
|
|
|
UCLASS()
|
|
class NAKATOMI_API AHealthPickup : public APickup
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
|
|
float Health = 20.0f;
|
|
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
|
|
UStaticMeshComponent* StaticMeshComponent = nullptr;
|
|
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
|
|
FVector MovementDirection = FVector(0.0f, 0.0f, 1.0f);
|
|
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
|
|
float MovementDistance = 1.0f;
|
|
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
|
|
float MovementSpeed = 1.0f;
|
|
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
|
|
FRotator SpinRotation = FRotator(0.0, 1.0f, 0.0f);
|
|
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
|
|
float RotationSpeed = 50.0f;
|
|
|
|
private:
|
|
UPROPERTY()
|
|
FVector StartingLocation;
|
|
|
|
public:
|
|
// Sets default values for this actor's properties
|
|
AHealthPickup();
|
|
|
|
protected:
|
|
// Called when the game starts or when spawned
|
|
virtual void BeginPlay() override;
|
|
|
|
public:
|
|
// Called every frame
|
|
virtual void Tick(float DeltaTime) override;
|
|
|
|
virtual void OnOverlapBegin(UPrimitiveComponent* OverlappedComponent, AActor* OtherActor,
|
|
UPrimitiveComponent* OtherComp, int32 OtherBodyIndex, bool bFromSweep,
|
|
const FHitResult& SweepResult) override;
|
|
};
|