Hello guys, in this new tutorial of Unity. Today, you’ll learn how to Throw Grenade / Bomb and make some explosion effects using free assets in Unity store. You can see also my video tutorial on YouTube step by step: Free assets First of all, we need to import 2 package from assets store: Grenade […]
Category: Unity
Unity RPG Zombies Killer Part 3
In this video you will learn how to make RPG game: NavMesh agent Enemy movement Enemy Shooting Enemy movement In this part of tutorial, we will use NavMeshAgent. This component is attached to a mobile character in the game to allow it to navigate the Scene using the NavMesh. The NavMesh is a class can be […]
Unity RPG Zombies Killer Part 2
In this video you will learn how to make RPG game:– Right joystick (Turn player and Fire)– Capsule TurnPlayer method: In this part of tutorial, we add the Right Joystick, it’s responsible for making player turn and fire. So, it has priority over the Left Joystick to manage player rotation. Player Shooting: Let’s add “Fire” […]
Unity RPG Zombies Killer Part 1
In this video you will learn how to make RPG game:– Terrains– Player Animation (Idle, Running).– Joystick movement (Player movement and rotation) Player movement: In this part of unity tutorial, we will user this free package of Soldier from Unity assets store. Let’s add “PlayerMovement.cs” script attached to Soldier Prefab: In “Update” method, we used […]
Unity Unlock levels
In this video you will learn how to make Unlock levels system. Binding buttons This buttons will be binding on “LoadMission” method in MissionSelect.cs class. This method takes in parameter the mission’s name. In the “Start” method, we can initialize the buttons icons and set them interactable or not.The code looks like : Storage data […]
Unity Missions slider
In this video you will learn how to make missions slider panels.Tutorial resources link. Panel Slider In order to make panel slider, we will use a free asset package called “iTween“.Let’s add now the Slider class that’s will manage the movement to the right an left of missions panels. This class contains essentially 2 methods […]
Unity Main Menu Design
In this video, you will learn: Photoshop button design Add sprites for Main menu Play, Settings and Exit Sprites Main Menu Panel container sprite Photoshop design: You need to download Photoshop from the official site web . You can use the trial version for 7 days only. I invite you to watch the video for […]
Unity Main Menu
In this tutorial, you will learn how make a basic Main Menu:3 Buttons in order to navigate to Missions, Settings scene and Exit application event. Create new project: Create new 3D project called “Main Menu”. Let’s add a background Canvas.After that, add 3 buttons inside a background panel: – Play– Settings– Exit For each button, […]