Compare commits

...

3 Commits

Author SHA1 Message Date
baz 079fba5d8b Create EXP Pickups 2024-08-16 02:14:53 +01:00
baz 841880e364 Make EXP Blueprint viewable 2024-08-16 02:14:39 +01:00
baz ab8f0a2f32 Add PaperSpriteComponent to APickup 2024-08-16 02:14:29 +01:00
9 changed files with 28 additions and 7 deletions

BIN
Content/Enemy/BP_EnemyCharacter.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/Pickups/BP_EXPPickup.uasset (Stored with Git LFS)

Binary file not shown.

BIN
Content/Pickups/EXP/BP_BlueEXPPickup.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Pickups/EXP/BP_GreenEXPPickup.uasset (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Content/Pickups/EXP/BP_RedEXPPickup.uasset (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -15,6 +15,8 @@ class VAMPIRES_API AEXPPickup : public APickup
GENERATED_BODY()
public:
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Category = "Pickup")
int EXP = 1;
protected:

View File

@ -5,6 +5,7 @@
#include "PlayerCharacter.h"
#include "Kismet/GameplayStatics.h"
#include "Kismet/KismetMathLibrary.h"
// Sets default values
APickup::APickup()
@ -14,8 +15,13 @@ APickup::APickup()
// Create Sphere Component
SphereComponent = CreateDefaultSubobject<USphereComponent>(TEXT("Sphere Component"));
SphereComponent->SetupAttachment(RootComponent);
SetRootComponent(SphereComponent);
SphereComponent->SetSphereRadius(25.0f);
SpriteComponent = CreateDefaultSubobject<UPaperSpriteComponent>(TEXT("Sprite Component"));
SpriteComponent->SetRelativeRotation(FRotator(0.0f, 90.0f,-90.0f));
SpriteComponent->SetRelativeScale3D(FVector(.5f, .5f, .5f));
SpriteComponent->SetupAttachment(RootComponent);
}
// Called when the game starts or when spawned

View File

@ -5,6 +5,7 @@
#include "CoreMinimal.h"
#include "Components/SphereComponent.h"
#include "GameFramework/Actor.h"
#include "PaperSpriteComponent.h"
#include "Pickup.generated.h"
UCLASS()
@ -21,7 +22,10 @@ public:
double PickupMovementSpeed = 1000;
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite)
USphereComponent* SphereComponent;
USphereComponent* SphereComponent = nullptr;
UPROPERTY(EditAnywhere)
UPaperSpriteComponent* SpriteComponent = nullptr;
public:
// Sets default values for this actor's properties

View File

@ -8,7 +8,7 @@ public class vampires : ModuleRules
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "EnhancedInput" });
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "EnhancedInput", "Paper2D" });
PrivateDependencyModuleNames.AddRange(new string[] { });