CodeLikeMe posts
[Project Files] Runtime character skeletal mesh change in unrealengine
In this unreal engine tutorial, I am going to show you how to change the character skeletal mesh in the runtime of the game in unrealengine. As we play the game, we can change the character into a deer, a dragon and back to a human anytime we need seamlessly. I have done this to emphasize the use o...
[Project Files] Unreal Flash Light with Light Function
password : codelikeme_flash Today, I am going to implement a flash light with a light function for the unreal first person template. A light function is a material that can be applied to a light to filter the intensity of the light across the projection. When we project a real flash light onto a sur...
[Project Files] Unreal Survival #15 - Inventory System [inventory Items]
In this episode of unreal engine survival tutorial series, I am going to continue with the inventory system. Today, let's implement a wiget to represent resource types or any item in the inventory. This item widget will be displayedin the slots of inventory and when we click on once of the items...
[Project Files] Interactive Sliding Door Blueprint in unreal engine
In this unreal engine tutorial, I am going to implement a slide and swing door. This door contains 5 panels and the right most panel will be used as the master door and if the player wants, all the panels can be slide into the right and fully open the panoramic door. When player go near the door, a ...
[Project Files]Bow and Arrow Aim Offset III - Unreal Open World #408
In the last episode of the unreal open world series, we worked on an aim offset asset for the character aiming with bow and arrow and integrated it with the character animation blueprint. But the arrow at right hand and the bow in the left hand don't exactly match when the character move the ai...
[Project Files] Unreal Locomotion with Rootmotion - Part 5 [Run to stop and Walk to stop animations]
This is the part 5 of rootmotion based locomotion system I am working on in unreal engine. Here I am going to walk on stop walking and stop running animations. When the player release the movement inputs, instead of lerping the movement speed to 0 and playing the walk animations accordingly in the b...
[Project Files] Touch Inputs in Unreal Engine
This tutorial is continued from the "Throwing objects with projectile prediction in unreal" video I did recently. Today, I am going to implement a touch input system on this project so we can control this game in a mobile device with a touch interface. There will be 2 visual thumbsticks on t...
[Project Files] Unreal Survival #14 - Inventory System [Basic widget layout]
In this episode of unreal engine survival tutorial series, I am going to start implementing an inventory system to manage the resources of the player gather in the game. For this, I am going to use red dead redemption satchel as a reference and in this episode, I will be working on the basic layout ...
[Project Files] Unreal Locomotion with Rootmotion - Part 4 [Jumping with Left/Right Foot]
This is the part 4 of rootmotion based locomotion system I am working on in unreal engine. Here I am going to implement a root motion enabled animations based jumping system. ALso, I am going to synchronize the jumping animation with the movement animations by changing the leg used to eject from the...
[Project Files] Unreal Pedestrian System - Part 4 [Dynamic Navigation & Navigation Invokers]
This is the part 4 of the mini series I am doing on a pedestrian system in unreal engine. So far we have implemented a pedestrian system which dynamically spawns and maintain a pool of pedestrian npc characters around the player walking area. But still, they are using a static or previously generate...
[Project File] Unreal Multiplayer FPS #4 - Replicating Damage and Kill
This is the 4th episode of unreal engine multiplayer first person shooter series. Today, am going to implement bullet damage on the characters. So, we will be able to shoot on other characters in the multiplayer environment and there health levels will be reduced and a hit reaction animation will be...
[Project Files] Unreal Scope Material with Realistic Zoom Effect
Today, I am going to implement a realistic scope for a gun. Whatever we see through the scope will be physically magnified and player can actually see a magnified view through the scope while keeping the same regular view around the the scope. This method can be applied to a VR gun or any other gun ...
[Project Files] Unreal Pedestrian System - Part 3 [Dynamic Spawning and Pooling Pedestrians]
This is the part 3 of the mini series I am doing on a pedestrian system in unreal engine. In previous episode, I implemented a way to define paths the pedestrians can take when they roam around the city. Today, I am going to implement a way to dynamically spawn the pedestrian characters and make su...
Unreal Third person Shooter #64 - Turn In Place
Project Files :https://www.patreon.com/posts/44440750In this episode of my unreal engine third person shooter series, I am going to continue with aiming and turning. Last time we implemented a way to turn the character upto some limit turning happens only in the upperbody. after that limit is exceed...
Unreal Third person Shooter #64 - Turn In Place
Project Files : https://www.patreon.com/posts/38469692 In this episode of my unreal engine third person shooter series, I am going to continue with aiming and turning. Last time we implemented a way to turn the character upto some limit turning happens only in the upperbody. after that limit is exce...
Unreal Third person Shooter #63 - Turn without moving foot
Project Files : https://www.patreon.com/posts/38469692 In this episode of my unreal engine third person shooter series, I am going to continue with aiming, Here, I'm gonna show you how to make the character turn only with the hips upto a certain limit, So, when the character exceed that limit, c...
[Project Files]Unreal Multiplayer FPS #1 - Replication
Today, I am going to start a new tutorial series on a multiplayer first person shooter game. In the first part, we are going to setup a basic multiplayer game using the first person template and then change the template to replicate the physics interactions in the world and projectiles. So, when any...
[Project Files] Throwing objects with projectile prediction in unreal
This tutorial is continued from the "Projectile Trajectory in Unreal - Part 2" video I did recently. Today, I am going to implement an object which can be thrown from the character according to the predicted path in projectile prediction system we have already worked on. This approach can be...
Unreal Third person Shooter #62 - Aim Offset IV
In this episode of my unreal engine third person shooter series, I am going to continue with aim offset. Now that we have integrated the aim offset asset we created into the animation blueprint, we have few issues in our gun placement on hand. We are going to fix those issues in this episode Support...
[Project Files] Projectile Trajectory in Unreal - Part 2 [change trajectory target]
Last time we worked on how to create a projectile path in unreal engine which predicts the path of some object like a rock the character can throw. Today, I am going to make the trajectory change with mouse input so that player can change the trajectory target. If player move mouse forward, trajecto...
[Project Files] Unreal Pedestrian System - part 1
This is the part 1 of the mini series I am doing on a pedestrian system in unreal engine. Here, I am going to focus on a way to define the paths that pedestrians can take. For example, if we take a city, there are streets, zebra crossings and sidewalks. Even though the whole area is navigable, in a ...
[Project Files] Facebook 3D photo with Unreal engine
In this episode I am going to show you how to properly capture scenedepth of the scene in unrealengine to make a 3D photo in facebook. I have already covered this topic in a previous video, but there were some issues in the method I used to capture the scene depth into a black and white image. Here...
[Project Files] Bow and Arrow Aim Offset- Unreal Open World #406
In this episode of unreal engine open world series, I am going to create an aim offset asset for to be used with the bow and arrow system. I had already implemented a way to aim the bow and arrow towards the reticle using bone modification based approach. but the results were not satisfactory. SO, ...
[Project Files] Unreal Survival #13 - Fruit Plants
In this episode of unreal engine survival tutorial series, I am going to implement a fruit plant where player can eat the fruits. When player eat fruits, it will increase the food bar level. Ad the fruits from the plant will be vanished. player can't eat again until they are replenished. passwor...
[Project Files] Portal & Teleport System In Unreal Engine
Here is a demo of portal and teleport system I have implemented in unreal engine. Using this system, player can see through the portal door to an alternative location in the map, it will look just like we are looking at that place through the door from that place, except player is not in that target...
[Project Files] Unreal Locomotion Blendspace with Rootmotion - Part 1
Usually, the character movement in unreal is handled by adding movement inputs. The problem in this approach is, we have to match the animation speeds manually to actual movement speed of the character. Today, I am going to show you a way to completely drive the character locomotion with a 2d blend...
[Project Files] Unreal Survival #12 - Hunger Level
In this episode of unreal engine survival tutorial series, I am going to implement the hunger level or the food level of the character and connect it with the progress bar on the hud which represent how full the character is. With time,t he food level will deplete and character will become hungry. ...
[Project Files] Dragon Riding - Unreal Open World #405
In this episode of unreal engine open world series, I am going to implement a dragon riding system. Player will be able to hop on the dragon and fly around the world. The system will be similar to horse and other animal riding systems we worked on previously. Please note that I will not be sharing t...
[Project Files] Mount & Dismount Animal/Horse - Unreal Open World #404
In this episode of unreal engine open world series I'm trying to refine the mount and dismounting of rides. In this case, I am riding a deer. But the same method can be applied to ride a horse as well. when the character go near a ride able horse/deer, and press E, character will mount the horse...
15000 subscribers
Thanks everyone. you deserve the biggest thank of this achievement. :)
![CodeLikeMe post [Project Files] Runtime character skeletal mesh change in unrealengine from patreon](https://img5.patrefans.com/storage/4/yp/cy/563145-019e846a-f3b7-72f5-a174-da19065c31a7.jpg)
![CodeLikeMe post [Project Files] Unreal Flash Light with Light Function from patreon](https://img10.patrefans.com/storage/7/rm/pk/563145-019e846a-f3b7-771c-ba69-e1a3b5f9818d.jpg)
![CodeLikeMe post [Project Files] Unreal Survival #15 - Inventory System [inventory Items] from patreon](https://img5.patrefans.com/storage/11/qd/hp/563145-019e846a-f3ba-72b9-bbd1-ae80552facbf.jpg)
![CodeLikeMe post [Project Files] Interactive Sliding Door Blueprint in unreal engine from patreon](https://img5.patrefans.com/storage/11/xb/wy/563145-019e846a-f3bb-76ba-9a11-056e50b661f1.jpg)
![CodeLikeMe post [Project Files]Bow and Arrow Aim Offset III - Unreal Open World #408 from patreon](https://img10.patrefans.com/storage/11/vo/qq/563145-019e846a-f3bb-7a8f-a2c4-1afe7c630fba.jpg)
![CodeLikeMe post [Project Files] Unreal Locomotion with Rootmotion - Part 5 [Run to stop and Walk to stop animations] from patreon](https://img10.patrefans.com/storage/3/ju/cy/563145-019e846a-f3bc-7441-aa0a-baa5ce2c7175.jpg)
![CodeLikeMe post [Project Files] Touch Inputs in Unreal Engine from patreon](https://img5.patrefans.com/storage/4/oc/jg/563145-019e846a-f3bc-76e9-ab00-7877a7850412.jpg)
![CodeLikeMe post [Project Files] Unreal Survival #14 - Inventory System [Basic widget layout] from patreon](https://img10.patrefans.com/storage/9/ei/nr/563145-019e846a-f3be-7014-92ef-b524e8af74ec.jpg)
![CodeLikeMe post [Project Files] Unreal Locomotion with Rootmotion - Part 4 [Jumping with Left/Right Foot] from patreon](https://img5.patrefans.com/storage/6/mx/ej/563145-019e846a-f3be-7401-a6fe-c84d7f3c3f85.jpg)
![CodeLikeMe post [Project Files] Unreal Pedestrian System - Part 4 [Dynamic Navigation & Navigation Invokers] from patreon](https://img10.patrefans.com/storage/8/vi/up/563145-019e846a-f3bf-7c7a-85c5-e4d33454a781.jpg)
![CodeLikeMe post [Project File] Unreal Multiplayer FPS #4 - Replicating Damage and Kill from patreon](https://img5.patrefans.com/storage/6/uo/km/563145-019e846a-f3c0-7634-8032-bcadd96b96c8.jpg)
![CodeLikeMe post [Project Files] Unreal Scope Material with Realistic Zoom Effect from patreon](https://img5.patrefans.com/storage/2/ja/so/563145-019e846a-f3c1-7553-ae41-9eb491847f0d.jpg)
![CodeLikeMe post [Project Files] Unreal Pedestrian System - Part 3 [Dynamic Spawning and Pooling Pedestrians] from patreon](https://img5.patrefans.com/storage/5/tg/ok/563145-019e846a-f3c2-75e2-be79-5cdd9d560855.jpg)


![CodeLikeMe post [Project Files]Unreal Multiplayer FPS #1 - Replication from patreon](https://img10.patrefans.com/storage/2/nr/sy/563145-019e846a-f3c9-7cf1-91fd-c6c38372fc42.jpg)
![CodeLikeMe post [Project Files] Throwing objects with projectile prediction in unreal from patreon](https://img5.patrefans.com/storage/6/mz/ui/563145-019e846a-f3c9-7e59-b685-556649a0310e.jpg)

![CodeLikeMe post [Project Files] Projectile Trajectory in Unreal - Part 2 [change trajectory target] from patreon](https://img10.patrefans.com/storage/8/mu/ju/563145-019e846a-f3d0-7ce2-bdea-436d21014440.jpg)
![CodeLikeMe post [Project Files] Unreal Pedestrian System - part 1 from patreon](https://img10.patrefans.com/storage/9/de/ty/563145-019e846a-f3d1-7115-9abe-58efda6329ce.jpg)
![CodeLikeMe post [Project Files] Facebook 3D photo with Unreal engine from patreon](https://img5.patrefans.com/storage/12/af/fn/563145-019e846a-f3d1-740d-9678-1c81b01b5303.jpg)
![CodeLikeMe post [Project Files] Bow and Arrow Aim Offset- Unreal Open World #406 from patreon](https://img10.patrefans.com/storage/9/eb/ht/563145-019e846a-f3d1-759a-80b8-259ab5c84e5e.jpg)
![CodeLikeMe post [Project Files] Unreal Survival #13 - Fruit Plants from patreon](https://img5.patrefans.com/storage/6/ah/cy/563145-019e846a-f3d5-7f3e-a3ce-8cf6d723322d.jpg)
![CodeLikeMe post [Project Files] Portal & Teleport System In Unreal Engine from patreon](https://img5.patrefans.com/storage/7/sx/or/563145-019e846a-f3d7-72eb-b295-0d2c94ee1278.jpg)
![CodeLikeMe post [Project Files] Unreal Locomotion Blendspace with Rootmotion - Part 1 from patreon](https://img10.patrefans.com/storage/4/ei/pt/563145-019e846a-f3da-7dd2-b524-014ce7d9e191.jpg)
![CodeLikeMe post [Project Files] Unreal Survival #12 - Hunger Level from patreon](https://img10.patrefans.com/storage/12/ax/uu/563145-019e846a-f3db-7074-9026-efba88ae5186.jpg)
![CodeLikeMe post [Project Files] Dragon Riding - Unreal Open World #405 from patreon](https://img10.patrefans.com/storage/11/qj/uf/563145-019e846a-f3dd-766e-ba12-485ea4788900.jpg)
![CodeLikeMe post [Project Files] Mount & Dismount Animal/Horse - Unreal Open World #404 from patreon](https://img10.patrefans.com/storage/6/qi/mb/563145-019e846a-f3e2-729c-94e1-a7f0c164d454.jpg)
