Update remaining includes
This commit is contained in:
parent
2ae5c4ec74
commit
ee0a537621
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include "EXPPickup.h"
|
||||
|
||||
#include "EXPComponent.h"
|
||||
#include "PlayerCharacter.h"
|
||||
|
||||
void AEXPPickup::BeginPlay()
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
|
||||
#include "EnemyCharacter.h"
|
||||
|
||||
#include "EXPPickup.h"
|
||||
#include "HealthComponent.h"
|
||||
#include "ObjectPoolComponent.h"
|
||||
#include "ObjectPoolManager.h"
|
||||
#include "VampireGameMode.h"
|
||||
#include "Kismet/GameplayStatics.h"
|
||||
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "EXPPickup.h"
|
||||
#include "ObjectPoolComponent.h"
|
||||
#include "VampireCharacter.h"
|
||||
#include "BehaviorTree/BehaviorTree.h"
|
||||
#include "EnemyCharacter.generated.h"
|
||||
|
||||
class UObjectPoolComponent;
|
||||
class UBehaviorTree;
|
||||
class AEXPPickup;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
#include "GoldPickup.h"
|
||||
|
||||
#include "GoldComponent.h"
|
||||
#include "PlayerCharacter.h"
|
||||
|
||||
class APlayerCharacter;
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
|
||||
#include "ObjectPoolManager.h"
|
||||
|
||||
#include "ObjectPoolComponent.h"
|
||||
|
||||
// Called when the game starts or when spawned
|
||||
|
|
|
@ -4,8 +4,9 @@
|
|||
#include "Pickup.h"
|
||||
|
||||
#include "PlayerCharacter.h"
|
||||
#include "Components/SphereComponent.h"
|
||||
#include "Kismet/GameplayStatics.h"
|
||||
#include "Kismet/KismetMathLibrary.h"
|
||||
#include "PaperSpriteComponent.h"
|
||||
|
||||
// Sets default values
|
||||
APickup::APickup()
|
||||
|
@ -19,7 +20,7 @@ APickup::APickup()
|
|||
SphereComponent->SetSphereRadius(25.0f);
|
||||
|
||||
SpriteComponent = CreateDefaultSubobject<UPaperSpriteComponent>(TEXT("Sprite Component"));
|
||||
SpriteComponent->SetRelativeRotation(FRotator(0.0f, 90.0f,-90.0f));
|
||||
SpriteComponent->SetRelativeRotation(FRotator(0.0f, 90.0f, -90.0f));
|
||||
SpriteComponent->SetRelativeScale3D(FVector(.5f, .5f, .5f));
|
||||
SpriteComponent->SetupAttachment(RootComponent);
|
||||
}
|
||||
|
@ -53,7 +54,7 @@ void APickup::OnBeginOverlap(UPrimitiveComponent* OverlappedComponent, AActor* O
|
|||
const FHitResult& SweepResult)
|
||||
{
|
||||
if (APlayerCharacter* PlayerCharacter = Cast<APlayerCharacter>(OtherActor))
|
||||
{
|
||||
{
|
||||
// TODO: Add extra functionality
|
||||
if (PickupSoundBase)
|
||||
{
|
||||
|
|
|
@ -3,11 +3,12 @@
|
|||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "Components/SphereComponent.h"
|
||||
#include "GameFramework/Actor.h"
|
||||
#include "PaperSpriteComponent.h"
|
||||
#include "Pickup.generated.h"
|
||||
|
||||
class USphereComponent;
|
||||
class UPaperSpriteComponent;
|
||||
|
||||
UCLASS()
|
||||
class VAMPIRES_API APickup : public AActor
|
||||
{
|
||||
|
|
|
@ -6,7 +6,13 @@
|
|||
#include "VampirePlayerController.h"
|
||||
#include "EnhancedInputComponent.h"
|
||||
#include "EnhancedInputSubsystems.h"
|
||||
#include "EXPComponent.h"
|
||||
#include "GoldComponent.h"
|
||||
#include "InputMappingContext.h"
|
||||
#include "WeaponInventoryComponent.h"
|
||||
#include "Camera/CameraComponent.h"
|
||||
#include "Components/WidgetComponent.h"
|
||||
#include "GameFramework/SpringArmComponent.h"
|
||||
|
||||
APlayerCharacter::APlayerCharacter()
|
||||
{
|
||||
|
@ -39,9 +45,9 @@ APlayerCharacter::APlayerCharacter()
|
|||
// Create HealthBar Widget Component
|
||||
HealthBarWidgetComponent = CreateDefaultSubobject<UWidgetComponent>(TEXT("Healthbar"));
|
||||
HealthBarWidgetComponent->SetupAttachment(RootComponent);
|
||||
HealthBarWidgetComponent->SetRelativeLocation(FVector(0,0,90));
|
||||
HealthBarWidgetComponent->SetRelativeLocation(FVector(0, 0, 90));
|
||||
HealthBarWidgetComponent->SetTwoSided(true);
|
||||
HealthBarWidgetComponent->SetBackgroundColor(FLinearColor(1,1,1,0));
|
||||
HealthBarWidgetComponent->SetBackgroundColor(FLinearColor(1, 1, 1, 0));
|
||||
}
|
||||
|
||||
void APlayerCharacter::BeginPlay()
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "EXPComponent.h"
|
||||
#include "GoldComponent.h"
|
||||
#include "VampireCharacter.h"
|
||||
#include "WeaponInventoryComponent.h"
|
||||
#include "Camera/CameraComponent.h"
|
||||
#include "GameFramework/SpringArmComponent.h"
|
||||
#include "Blueprint/UserWidget.h"
|
||||
#include "Components/WidgetComponent.h"
|
||||
#include "PlayerCharacter.generated.h"
|
||||
|
||||
struct FInputActionInstance;
|
||||
class UWidgetComponent;
|
||||
class UWeaponInventoryComponent;
|
||||
class UGoldComponent;
|
||||
class UEXPComponent;
|
||||
class UCameraComponent;
|
||||
class USpringArmComponent;
|
||||
class UInputMappingContext;
|
||||
class UInputAction;
|
||||
|
||||
|
|
|
@ -3,6 +3,11 @@
|
|||
|
||||
#include "VampireAIController.h"
|
||||
|
||||
#include "EnemyCharacter.h"
|
||||
#include "HealthComponent.h"
|
||||
#include "VampireCharacter.h"
|
||||
#include "BehaviorTree/BehaviorTree.h"
|
||||
#include "BehaviorTree/BehaviorTreeComponent.h"
|
||||
#include "BehaviorTree/BlackboardComponent.h"
|
||||
#include "Kismet/GameplayStatics.h"
|
||||
#include "Navigation/CrowdFollowingComponent.h"
|
||||
|
|
|
@ -4,13 +4,12 @@
|
|||
|
||||
#include "CoreMinimal.h"
|
||||
#include "AIController.h"
|
||||
#include "DetourCrowdAIController.h"
|
||||
#include "EnemyCharacter.h"
|
||||
#include "HealthComponent.h"
|
||||
#include "PlayerCharacter.h"
|
||||
#include "BehaviorTree/BehaviorTreeComponent.h"
|
||||
#include "VampireAIController.generated.h"
|
||||
|
||||
class AEnemyCharacter;
|
||||
class APlayerCharacter;
|
||||
class UBehaviorTreeComponent;
|
||||
class UBlackboardComponent;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -3,6 +3,9 @@
|
|||
|
||||
#include "VampireCharacter.h"
|
||||
|
||||
#include "HealthComponent.h"
|
||||
#include "PaperFlipbookComponent.h"
|
||||
|
||||
// Sets default values
|
||||
AVampireCharacter::AVampireCharacter()
|
||||
{
|
||||
|
|
|
@ -4,10 +4,11 @@
|
|||
|
||||
#include "CoreMinimal.h"
|
||||
#include "GameFramework/Character.h"
|
||||
#include "HealthComponent.h"
|
||||
#include "PaperFlipbookComponent.h"
|
||||
#include "VampireCharacter.generated.h"
|
||||
|
||||
class UHealthComponent;
|
||||
class UPaperFlipbookComponent;
|
||||
|
||||
UCLASS()
|
||||
class VAMPIRES_API AVampireCharacter : public ACharacter
|
||||
{
|
||||
|
|
|
@ -3,6 +3,10 @@
|
|||
|
||||
#include "VampireGameMode.h"
|
||||
|
||||
#include "EnemyCharacter.h"
|
||||
#include "ObjectPoolManager.h"
|
||||
#include "PlayerCharacter.h"
|
||||
#include "VampirePlayerController.h"
|
||||
#include "Components/CapsuleComponent.h"
|
||||
#include "Kismet/GameplayStatics.h"
|
||||
|
||||
|
|
|
@ -3,13 +3,13 @@
|
|||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "EnemyCharacter.h"
|
||||
#include "ObjectPoolManager.h"
|
||||
#include "PlayerCharacter.h"
|
||||
#include "VampirePlayerController.h"
|
||||
#include "GameFramework/GameMode.h"
|
||||
#include "VampireGameMode.generated.h"
|
||||
|
||||
class AObjectPoolManager;
|
||||
class AVampirePlayerController;
|
||||
class APlayerCharacter;
|
||||
class AEnemyCharacter;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
|
||||
#include "WeaponInventoryComponent.h"
|
||||
#include "Weapon.h"
|
||||
|
||||
// Sets default values for this component's properties
|
||||
UWeaponInventoryComponent::UWeaponInventoryComponent()
|
||||
|
|
|
@ -3,11 +3,12 @@
|
|||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "Weapon.h"
|
||||
#include "Components/ActorComponent.h"
|
||||
#include "WeaponInventoryComponent.generated.h"
|
||||
|
||||
|
||||
class AWeapon;
|
||||
|
||||
UCLASS(ClassGroup=(Custom), meta=(BlueprintSpawnableComponent))
|
||||
class VAMPIRES_API UWeaponInventoryComponent : public UActorComponent
|
||||
{
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue