SamSuka
CodeLikeMe

CodeLikeMe

patreon


CodeLikeMe activity

Move C++ Classes Into a Plugin in Unreal - ALS #224

Today I am going to move some of the C++ classes that I have in my project into a separate plugin. I have a C++ character class and a custom C++ AI Controller. The reason that i wanted to do that was that allows me to easily re-use the custom C++ code across different project and easier distribut...

View Post

How To Add ADS/Aim Down Sight to FPS Template in Unreal Engine 5.6


In this unreal engine tutorial, I am going to show you how to add aim down sight mode into the first person shooter template in unreal engine 5.6 version. Here we are going to use the Arena shooter project that comes as a started template variant under FPS templates and by default we don't ha...

View Post

FPS Tactical Scope System in Unreal Engine - Free Playable Demo


Here is a playable demonstration of unreal engine 5 FPS Tactical Scopes and Sights System. In this updated, we have implemented a zoomable scope system which supports following tactical visions modes.

- Night Vision.
- Thermal vision.
- Predator style heat vision.

Each vis...

View Post

Multiple Tactical Vision Modes in Unreal - ALS #223

In this episode of the unreal engine third person shooter tutorial series, we are going to implement a way to cycle through all different tactical vision modes we have implemented previously. So, player will be able to switch and use the suitable tactical vision mode at the runtime. You can watch...

View Post

Predator Heat Vision Mode in Unreal Engine Shooter - ALS #222

Here is a demonstration of predator style heat vision system implemented in unreal engine 5. This is mainly inspired from the predator movie. But we can see heat vision systems in games like call of duty as well. Player will be able to dynamically enable and disable heat vision mod at the runtime...

View Post

Thermal Vision Mode in Unreal Engine Shooter - ALS #221

In this unreal engine tutorial, we are going to implement a White Hot Thermal vision mode in our shooter game. White hot thermal vision means warmer surfaces will appear in white and colder surfaces will appear in darker colors. Here we will initially implement a post process material that emulat...

View Post

How to Toggle Night Vision Mode in Unreal - ALS #220

In the last episode of the unreal engine shooter series, we implemented a Night Vision mode which gives player better visibility in darker environments. Today we are going to work on how to dynamically enable and disable night vision mode in the runtime. Here we will dynamically change post proce...

View Post

Night Vision Mode in Unreal Engine Shooter - ALS #219

In this unreal engine tutorial, we are going to implement a Night Vision mode in our shooter game. Here we will initially implement a post process material that emulates a night vision goggles mode inspired from call of duty. After implementing the post process material and adding required change...

View Post

How To Save and Load External Texture Files at Runtime In Unreal Engine


In this unreal engine tutorial, I'm going to show you how to capture a screenshot in unreal engine at runtime and save it into a external folder. Then load that texture or any external texture from the file system in runtime into the game. This can be used for a photo mode in the game where p...

View Post

How to Setup Chorded Input Actions in Enhanced Input System - Top Down Shooter #15

In this unreal engine tutorial, We are going to setup a chorded action to allow player to orbit the camera around the player character with the key combination of middle mouse button press and mouse x axis movement. Using chorded actions, we can define different actions for different input key co...

View Post

No Rain Under Shelter in Unreal - Dynamic Niagara Occlusion

Today we are going to work on how to prevent rain particle go inside shelters or any indoor area of the game. Here, we will implement a dynamic occlusion volume for rain particles that kills GPU rain particles if they enter the volume and there can be multiple indoor areas that supports the occlu...

View Post

How to Capture Multiple Colors From Custom Depth into Render Target in Unreal

This is the 43rdd part of the Real Time Strategy game using Unreal Engine and C++ tutorial series. In the previous episode, we worked on how to get custom depth into a render target texture. This can be used to show the domination of a faction by overlapping the faction color of entities that bel...

View Post

How to Capture Custom Depth Only to Render Target using Scene Capture

This is the 42nd part of the Real Time Strategy game using Unreal Engine and C++ tutorial series. But it is not required to have followed previous tutorials to understand how to capture only the objects rendered on custom depth into a render target using a scene capture component. This will be us...

View Post

How to Create a Dynamic Texture Through Code in Unreal Engine 5

In this tutorial, we are going to see how to create a dynamic texture through code in unreal engine. So we will be able to create and update pixel data through the code. This might be useful for things like maps where we need to update pixel data in runtime.

password=MakeTextureCLM View Post

Unreal Engine Infinite Desert Landscape

In this tutorial, we are going to create an infinite desert landscape using the world engine infinite terrain generator plugin. Here, player will be able to walk in any direction infinitely and desert landscape will be generated as the player moves infinitely. We will also modify the atmosphere t...

View Post

World Engine - Infinite Terrain Generator Plugin - Unreal Engine 5.6 Update

Here is a demonstration of unreal engine 5.6 Infinite terrain generator plugin. This plugin can be used to create an infinite landscape in your game world. No matter where you go, there will be land, sea, trees, grass and animal. There are parameters to customize the generated landscape and spawn...

View Post

Unreal Engine Dynamic Weather Rain and Thunder System - Storm Clouds and Storm Lights Integration

Today we are going to integrate the storm clouds and storm light features available in new volumetric clouds system into the dynamic weather rain and thunder system we have worked on in our open world project. The new and improved volumetric clouds will give us more realistic clouds and will impr...

View Post

Unreal Engine Volumetric Clouds Material - How to Setup Storm Clouds & Storm Lighting

Today we are going to look into how to configure storm clouds and storm lighting on storm clouds options that came with updated volumetric clouds material in unreal engine. This will be later integrated later on into the dynamic weather rain system. Here we will look into storm clouds and storm l...

View Post

Unreal Engine 5 Cooking Game Tutorial - Part 9 - Recipe UI

In this episode of unreal engine cooking tutorial series, We are going to create a recipe system. We will setup a data table to store Recipes and then a UI widget will be created to display the selected recipe on the HUD so that the player can refer to that and add ingredients into the cooking po...

View Post

Unreal Engine Minimap Scaling - Design Viewer #13

In this episode of unreal architectural design viewer series, We are mainly going to work on how to scale the minimap widget we have created. We will figure out the math part and the material code to implement that. In addition to that, we will re-organize the menu for map and minimap.

pass...

View Post

Unreal Engine Design Viewer #12 - How to Use a Custom Image For Minimap and MainMap

In this episode of unreal architectural design viewer series, We are going to address, How to use a custom image with extra details that is created externally with hand drawn details as the map image. We have already implemented a method to automatically capture an image for the ap from top view ...

View Post

Unreal Engine 5 Cooking Game Tutorial - Part 8 - Drag and Drop Ingredients into Cooking Pot

In this episode of unreal engine cooking tutorial series, We are going to work on how to drag and drop cooking ingredients/items from inventory into the cooking pot for cooking. As we drag and drop UI buttons in inventory above the cooking pot, a static mesh that represents the item will be spawn...

View Post

Unreal Engine 5 Cooking Game Tutorial - Part 7 - Drag and Drop UI Buttons From Inventory

This is the 7th episode of cooking game in unreal engine tutorial series. Here, we are going to work on how to drag and drop item buttons in the inventory. This will be used to drag and drop cooking ingredients from the inventory to the cooking pot later on.

password=Drag&DropButtons View Post

Unreal Engine 5 Inventory - Show Weapon Stats - Action RPG #186

This is the 186th episode of the new tutorial series on Action RPG game using Gameplay Ability System. Today we are working on how to add stat bars to the weapon details panel in the inventory. We will be pulling weapon stats such as attack, speed, stun from the inventory item data table.

<...

View Post

Unreal Engine Design Viewer #11 - Architectural Project Layout MiniMap

In this episode of unreal architectural design viewer, We are going to implement a mini map. Here we will work on the math and logic required to make the minimap match the player camera and respond to movement and rotation of the player. So the minimap will rotate and move the image to always kee...

View Post

Unreal Engine 5 - Top Down Shooter #14 - Enemy Target Lines

In this episodes of the top down shooter series, I am going to add target lines for enemy NPC AI characters. Target line means the lines that extend from the nozzle of the gun towards the point they are aiming at. This is very helpful in a top down game to clearly show where the NPCs are aiming a...

View Post

Unreal Engine 5 - Top Down Shooter #13 - Shooting Target Line

In this episodes of the top down shooter series, I am going to add a new feature to show a line to target location from the nozzle of the gun. This feature is added to help player understand clearly if the targeting point is blocked by any other object in the world. If the game is on third person...

View Post

Unreal Engine 5 Inventory - Weapon Preview Weapon Details - Action RPG #185

This is the 185th episode of the new tutorial series on Action RPG game using Gameplay Ability System. Today we are going to implement previewing of item details when we hover the cursor over the item icon in the inventory UI. These items can be anything such as weapons, armors, helmets, shields ...

View Post

Unreal Engine 5.6 Top Down Shooter Template

Today I am going to update the Unreal Engine Top Down Shooter Template I have worked on into unreal engine 5.6 version. This project will contain everything we have worked on so far in the series including the top down mode and the third person mode. I will do some minor improvements to the top d...

View Post

Unreal Engine 5 - Inventory Data Table Integration- Action RPG #184

This is the 184th episode of the new tutorial series on Action RPG game using Gameplay Ability System. In the last episode we created a data table to hold all the read only data relevant to weapons, shields and all other items. Today we are going to integrate this data table into the inve...

View Post