Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411428 Posts in 69363 Topics- by 58416 Members - Latest Member: JamesAGreen

April 19, 2024, 02:04:11 PM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsCommunityTownhallForum IssuesArchived subforums (read only)TutorialsMaze Generator - Youtube tutorial channel
Pages: 1 [2] 3 4
Print
Author Topic: Maze Generator - Youtube tutorial channel  (Read 17907 times)
GamadGames
Level 0
***



View Profile WWW
« Reply #20 on: June 27, 2016, 06:18:54 AM »




Hello guys and welcome to another unity 5 tutorial!
In this tutorial we are going to create a hunger system in Unity 5!

I hope you guys like it!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #21 on: July 04, 2016, 06:16:01 AM »

Hello guys!

Today we are going to create a minecraft crafting system!

I hope you guys like it!




Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #22 on: July 11, 2016, 06:13:24 AM »




PART 2 of how to create a minecraft crafting system!!!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #23 on: July 18, 2016, 12:54:05 AM »




Hello guys and welcome to the last part of the Minecraft crafting system tutorial!
I hope you guys like it!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #24 on: July 29, 2016, 07:46:57 AM »




For all the guys who need this...
[Unity 5] Tutorial: How to make a level and xp system with unity
Hello guys and welcome to another unity 5 tutorial!
In this tutorial we are going to create a level/xp system!

I hope you guys like it!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #25 on: August 01, 2016, 06:53:52 AM »

Hello guys and welcome to another unity 5 tutorial!
In this tutorial we are going to create a BASIC rage system!





Important: In this tutorial I used the VignetteAndChromaticAberration as an example, because it is easy to see what it does, if you want to use it in your own project find an effect that suits the game!
(The effect grayscale/sepiatione is also an awesome effect that works out pretty well, for example in the GTA V)

For the thumbnail I used an old scene from War Heroes and ONLY added the effect which I showed you guys in the tutorial.

This system includes:
*How to turn on/off image effects (by a rage system it looks weird if you are fading it in).
*One thing I forgot to explain (because there are many ways to use this is how to integrate this) how it would double your damage during the raging. Just add in the "Attack function"  this:
(you have already a variable damage that indicate the amount of damage that you can deal)
public void Attack()
{
   int curdamage = damage;

   if(Israging)
       curdamage = damage * 2;

   //send damage and so on
}

*if you want to slow down the time you can add in the raging function.
Time.timescale = 0.5f;
(for this to work you need to intergrate in everything (movement, projectile speed and so on) the timescale and don't forget to undo this when you aren't raging anymore!)



I hope you guys like it!

Also if you got any questions, just ask in the comments!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #26 on: August 08, 2016, 07:24:04 AM »

Hello guys and welcome to another unity 5 tutorial!
In this tutorial we are going to create a climbing system!




My inspiration was Assassins Creed, but also Uncharted Wink

I hope you guys like it!

Also if you got any questions, just ask in the comments!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #27 on: August 15, 2016, 06:21:20 AM »

The second part of how to create a climbing system with unity!



Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #28 on: August 18, 2016, 06:11:03 AM »





Hello guys and welcome to another unity 5 tutorial!

In this tutorial we are going to create a check if your player is grounded.

First how to make it yourself, then how to make it when you are using the standard unity assets
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #29 on: August 22, 2016, 06:29:44 AM »





The third part of how to create a climbing system like in AC!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #30 on: August 29, 2016, 06:20:46 AM »





The fourth part of how to create a climbing system!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #31 on: September 05, 2016, 06:13:35 AM »





Part 5 of this tutorial series!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #32 on: September 12, 2016, 06:17:11 AM »





Part 6 is out!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #33 on: September 19, 2016, 06:32:41 AM »





Part 7 of how to create a climbing system!!!!!!!!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #34 on: September 26, 2016, 06:51:18 AM »





Part 8 is out!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #35 on: October 03, 2016, 06:23:34 AM »





Part 9 is uploaded!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #36 on: October 10, 2016, 06:22:53 AM »




The last part in this awesome Wink tutorial series about how to create a climbing system like in Assassins creed!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #37 on: October 18, 2016, 07:13:01 AM »





How to debug raycasts in unity!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #38 on: November 03, 2016, 08:56:34 AM »





How to double jump in unity!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
GamadGames
Level 0
***



View Profile WWW
« Reply #39 on: November 07, 2016, 07:40:51 AM »





Hello guys!
Today we are going to create a compass in unity!

I hope you guys like it!
Logged

Unity game developer and tutor
Creating the game Pirate Treasure and uploading tutorials every monday on this channel: https://www.youtube.com/channel/UCqFFZvgC7JUL6esOrL8LyWg
Pages: 1 [2] 3 4
Print
Jump to:  

Theme orange-lt created by panic