How to do it...

  1. Create an ActorComponent subclass using the engine called InventoryComponent:
  1. Inside of the InventoryComponent.h file, add the following code:
#pragma once#include "CoreMinimal.h"#include "Components/ActorComponent.h"#include "InventoryComponent.generated.h"UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )class CHAPTER_04_API UInventoryComponent : public UActorComponent{    GENERATED_BODY()public:     // Sets default values for this component's properties    UInventoryComponent();    UPROPERTY()    TArray<AInventoryActor*> CurrentInventory;    UFUNCTION()    int32 AddToInventory(AInventoryActor* ActorToAdd);    UFUNCTION() void ...

Get Unreal Engine 4.x Scripting with C++ Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.