VehiclesFashionRecipesBlogsHuntTravelsSportFunHandmadeITEducation
Mini-Games
x

x
zakruti.com » IT - Software » freeCodeCamp.org
Unity 3D Tutorial - Beat Em Up Fight Game

Unity 3D Tutorial - Beat Em Up Fight Game

FBTwitterReddit

video description

Rating: 4.0; Vote: 1
Learn how to use Unity to create a 3D Beat Em Up Fight Game. This tutorial covers everything you need to know to make a basic Beat Em Up game. You are even provided the 3D assets! -Assets: https://github.com/AwesomeTuts/3d-beat-em-up-game-assets --Course Contents -- -- (0:00) Intro -- (3:47) Importing Assets -- (7:49) Configuring Our Player -- (12:34) Creating Player Animations -- (28:32) Player Movement Script -- (48:08) Character Animation Script -- (1:07:00) Player Attack Script -- (1:30:18) Configuring Our Enemies -- (1:49:52) Enemy Movement Script -- (2:19:58) Creating Player Attack Points For Detecting And Dealing Damage -- (2:34:34) Character Animation Delegate Script -- (3:04:51) Creating The Health Script -- (3:11:37) Knocking Down Enemy With Combos -- (3:26:02) Adding Sound FX In The Game -- (3:44:59) Camera Shake FX -- (3:57:31) Enemy Attack Points And Dealing Damage To Player -- (4:14:18) Enemy Manager Script -- (4:20:03) Displaying Health Stats With UI Tutorial created by Awesome Tuts. Check out Awesome Tuts Youtube channel: https://www.youtube.com/channel/UC5c-DuzPdH9iaWYdI0v0uzw Help Osarion To Bring His Game To Life https://www.kickstarter.com/projects/osarion/unsung-warriors Check Out The 3D Beat Em Up Unity Template https://assetstore.unity.com/packages/templates/systems/beat-em-up-game-template-3d-98013 The creator of the assets is Osarion and these are the assets from his beam em up unity template. Please NOTE that these assets can be used only for EDUCATIONAL purposes to follow this tutorial, you can't use them to create a commercial game or share the assets with others
Date: 2022-03-14

Comments and reviews: 7


Tags Manager Script! :
using System.Collections;-
using System.Collections.Generic;-
using UnityEngine;-
public class AnimationTags-
--
public const string MOVEMENT = -Movement-;-
public const string PUNCH_1_TRIGGER = -Punch1-;-
public const string PUNCH_2_TRIGGER = -Punch2-;-
public const string PUNCH_3_TRIGGER = -Punch3-;-
public const string KICK_1_TRIGGER = -Kick1-;-
public const string KICK_2_TRIGGER = -Kick2-;-
public const string ATTACK_1_TRIGGER = -Attack1-;-
public const string ATTACK_2_TRIGGER = -Attack2-;-
public const string ATTACK_3_TRIGGER = -Attack3-;-
public const string IDLE_ANIMATION = -Idle-;-
public const string KNOCK_DOWN_TRIGGER = -KnockDown-;-
public const string STAND_UP_TRIGGER = -StandUp-;-
public const string HIT_TRIGGER = -Hit-;-
public const string DEATH_TRIGGER = -Death-;-
--
public class Axis --
public const string HORIZONTAL_AXIS = -Horizontal-;-
public const string VERTICAL_AXIS = -Vertical-;-
--
public class Tags --
public const string GROUND_TAG = -Ground-;-
public const string PLAYER_TAG = -Player-;-
public const string ENEMY_TAG = -Enemy-;-
public const string LEFT_ARM_TAG = -LeftArm-;-
public const string LEFT_LEG_TAG = -LeftLeg-;-
public const string UNTAGGED_TAG = -Untagged-;-
public const string MAIN_CAMERA_TAG = -MainCamera-;-
public const string HEALTH_UI = -HealthUI-;-
-

reply

Always remember to repent of your sins (sin is transgression of YAHUAH-S LAW: Genesis, Exodus, Leviticus, Numbers, & Deuteronomy) And Have Belief On YAHUSHA HAMASHYACH. HE Died and Rose Again On The Third Day So that you can be forgiven of your sins!
HE Loves you! Come to HIM!-

reply

YES! This time I cut down my problems and learned even more! I stopped the video a couple of times and did it before he said it. Even though I was still missing some application to code or GameObjects I still Got Experience!!! Wonderful!!!
reply

29:00 when I am trying to apply the script on the player it is showing me a pop up box -Can't add Script- and the message -The script 'PlayerMovement' Does not contain a class derived from UnityEngine.MonoBehaviour. Can someone help?
reply

Hey, nice video I'm making this project alongside you. Just a question, when you start playing the attack animations, it doesn't work for me, what did I miss ? (In the part that you're testing the Z punch and the X Kick)
reply

what have i done wrong?
i'm trying to figure out the knockdown part, the animation is called and works, but the enemy will exit the animation before its fully completed and will go back to striking or following...

reply

I wanted a tutorial teaching how to apply wrestling strokes, it would be great! Anyway, this tutorial is from balacobaco, too good.
reply
Add a review, comment






Other channel videos