I am continuing the Battery Collector tutorial. This is the 9th video. Click here for the first part and here for the previous one. Extending the Character Class We are going to work on the collection code. One is in the…
I am continuing the Battery Collector tutorial. This is the 9th video. Click here for the first part and here for the previous one. Extending the Character Class We are going to work on the collection code. One is in the…
I am continuing the Battery Collector in C++ tutorial from Unreal Engine. This is the 8th video. This time we will define When to Spawn. Setting Timers for Spawning In the SpawnVolume.h header file, we add 3 protected variables: a…
I am continuing the Battery Collector in C++ tutorial from Unreal Engine. This is the 7th video. Defining What to Spawn In the SpawnVolume.h header file, we declare a protected variable “WhatToSpawn”: protected: /** The pickup to spawn */ UPROPERTY(EditAnywhere,…
I am continuing the Battery Collector in C++ tutorial from Unreal Engine. This is the 6th video. We will create a Spawning Volume with functionalities to setup: Where to Spawn What to Spawn When to Spawn There are 3 videos…
I am continuing the Battery Collector in C++ tutorial from Unreal Engine. This is the 5th video. Extending the Pickup Class In this part, we will create a Battery Pickup based on the Base Pickup we created previously. To do…
I am following the video tutorial Battery Collector for Unreal Engine. The previous steps can be read here. Adding Variables and Functions In Pickup.h, I add the protected variable bIsActive: protected: /** True when the pickup cab be used, and…
I am following the tutorial Battery Collector for Unreal Engine. This tutorial describes how to create pickups in C++. Building The Base Level I create a new project based on 3rd Person C++ template. I name this project BatteryCollector. In this project, I…
Introduction Navis Sideralis is an action RPG Rogue-like shooter in a randomly generated environment. It is currently in development using Unreal Engine 4. In this game, the hero has been captured in a giant alien starship controlled by an AI that travels the galaxies…