I am continuing the Battery Collector tutorial. This is the 17th video. Click here for the first part and here for the previous one. Creating the HUD BatteryHUD In the Unreal Engine Editor, I am creating a Widget Blueprint and I am…
I am continuing the Battery Collector tutorial. This is the 17th video. Click here for the first part and here for the previous one. Creating the HUD BatteryHUD In the Unreal Engine Editor, I am creating a Widget Blueprint and I am…
I am continuing the Battery Collector tutorial. This is the 16th video. Click here for the first part and here for the previous one. Enabling UMG PowerToWin In BatteryCollectorGameMode.h, I am declaring a protected property PowerToWin: /** The power needed to…
I am continuing the Battery Collector tutorial. This is the 15th video. Click here for the first part and here for the previous one. Adding Particles to the Battery Pickup I am opening the Battery_BP blueprint and I am clicking on “Open…
I am continuing the Battery Collector tutorial. This is the 14th video. Click here for the first part and here for the previous one. Changing the Character’s Speed and Material Code In the BatteryCollectorCharacter.h file, I am adding 2 properties: SpeedFactor…
I am continuing the Battery Collector tutorial. This is the 13th video. Click here for the first part and here for the previous one. Powering Down the Character In the BattercyCollectorGameMode.h file, we are going to create a decay rate. protected:…
I am continuing the Battery Collector tutorial. This is the 12th video. Click here for the first part and here for the previous one. Powering Up the Character In the BatteryCollector.cpp file, I am including the BatteryPickup.h file. In the CollectPickups()…
I am continuing the Battery Collector tutorial. This is the 11th video. Click here for the first part and here for the previous one. Adding Power to the Game Battery power In the BatteryPickup.h header file, I am adding a protected…
I am continuing the development of a Pong game in C++. This time, I will setup an independent camera and set the material for the Score. Independent Camera I am adding a camera to the level. I am rotating it…
I am continuing the Battery Collector tutorial. This is the 10th video. Click here for the first part and here for the previous one. Collecting Pickups In the BatteryCollectorCharacter.h, I am declaring a CollectPickups function: /** Called when we press a…
Every developer should develop a Pong game, so here is my attempt to make it. I’ve decided to do it using Unreal Engine 4. There is already an excellent tutorial made by Alex Young on how to make Pong in…