Unity Skill Cooldown Tutorial (No talking)

  Рет қаралды 13,700

Micho Schmidt

Micho Schmidt

Күн бұрын

Пікірлер
@hernanbrega
@hernanbrega 5 жыл бұрын
Just straight to the point, great video and thanks :)
@MichoSchmidt
@MichoSchmidt 5 жыл бұрын
Hi and thanks for comment :) Yeah some tutorials I like to make simple and fast :)
@alexandrefradette2903
@alexandrefradette2903 6 жыл бұрын
Thank yyou for that quick and simple video!
@MichoSchmidt
@MichoSchmidt 6 жыл бұрын
Happy that you liked it.
@Destroyah380
@Destroyah380 5 жыл бұрын
Not working, cooldown image doesnt appear when I press the key meant for it, no matter what key i code it to. Testing in game mode shows moving the slider myself has it work like it should but the key press doesnt work still
@MichoSchmidt
@MichoSchmidt 5 жыл бұрын
Hello Destroyah, do you get some error or something?
@notrain5455
@notrain5455 Жыл бұрын
Well you added a text but i expected a text cooldown lol But that's easy to make, thanks for vidéo :)
@MichoSchmidt
@MichoSchmidt Жыл бұрын
Hi! This video is getting old, I should make a new one if I have time:D
@notrain5455
@notrain5455 Жыл бұрын
@@MichoSchmidt it remains craizy helpful
@MichoSchmidt
@MichoSchmidt Жыл бұрын
@@notrain5455 Awesome! Hope your having a great day! Your welcome to look on my devlogs too, if your interested on that on my channel.
@serveladik
@serveladik 2 жыл бұрын
What if u have bunch of spells, you would copy paste that? thats dumb And what if we gonna change the spells?
@MichoSchmidt
@MichoSchmidt 2 жыл бұрын
This was a simple explain, to make different spells, need to code it different. Have a great day.
@SasukeUchiha723
@SasukeUchiha723 7 жыл бұрын
Your video is simple and awesome
@MichoSchmidt
@MichoSchmidt 5 жыл бұрын
Thanks so much! (2 Years later I did anwser thiis)
@nelsaluya9229
@nelsaluya9229 7 жыл бұрын
Sir how can I use my own button to start cooling down my Skill? I set a "public GameObject myButton/ public Button myButton" and I dont know how to call them at Update, I want this to use instead of using KeyCodes
@MichoSchmidt
@MichoSchmidt 7 жыл бұрын
Hello! Sorry for late anwser, a easy way you can do it is. You need to create a "Button" under the Canvas, then in the script you can make. public Button skillOne; void Start() { skillOne.onClick.onClick.AddListener(UseSkill); } void UseSkill() { // Something happend here, you can add effects, or anything here. }
@apina_
@apina_ 3 жыл бұрын
Where do i put my function?
@MichoSchmidt
@MichoSchmidt 3 жыл бұрын
Hello, I just show some simple cooldown here inside Update Function. You can create your own function outside "Update".
@apina_
@apina_ 3 жыл бұрын
@@MichoSchmidt thanks
@apina_
@apina_ 3 жыл бұрын
@@MichoSchmidt i didn't figure out how to do that
@MichoSchmidt
@MichoSchmidt 3 жыл бұрын
@@apina_ Just wonder, is the code not working? Got error or something ?
@apina_
@apina_ 3 жыл бұрын
@@MichoSchmidt nah, im not usre exactly where to put My funcrion and if ur wondering what it is them: if (Input.GetKeyDown("space)) Rb.addforce(0, 5, 25) Some5hing like that
@bhodivibe
@bhodivibe 5 жыл бұрын
nice
@MichoSchmidt
@MichoSchmidt 5 жыл бұрын
Thanks FudgyDoodies! Hope you have a good day.
@waridc
@waridc 5 жыл бұрын
good work!
@MichoSchmidt
@MichoSchmidt 5 жыл бұрын
Thanks so much! Hope you have a great day!
@maddehaan
@maddehaan 4 жыл бұрын
Should use a IENumerator (Coroutine), it is easier and more understandable. Also you made a mistake while doing it for the same reason. You could have used the -= but had to start at 1 in that case.
@MichoSchmidt
@MichoSchmidt 4 жыл бұрын
Hi and thanks for tell that, awesome!
@zekiozdemir420
@zekiozdemir420 3 жыл бұрын
tytyty
@MichoSchmidt
@MichoSchmidt 3 жыл бұрын
Whohoo
@substanceshift
@substanceshift 7 жыл бұрын
SkillBarController.cs(8,9): error CS0246: The type or namespace name `image' could not be found. Are you missing an assembly reference? i get this error only please help i love ur tutorial
@MichoSchmidt
@MichoSchmidt 7 жыл бұрын
Hello! Have you dragged a Image to the ImageCooldown? and look so you are using UnityEngine.UI at the top of editor. And look so you have type: public Image imageCooldown;
@substanceshift
@substanceshift 7 жыл бұрын
Thanks alot man it works now :D
@MichoSchmidt
@MichoSchmidt 7 жыл бұрын
Great it's work for you!
@substanceshift
@substanceshift 7 жыл бұрын
Hello may i know how to make the cooldown refil after its go down and goes empty ..make it have to "Refill" again,, becuz right now it just after being pressed get empty then be instant filled after thhat i hope i presented my idea right sorry for bad english
@streetguitarist5949
@streetguitarist5949 5 жыл бұрын
Which song sir..?
@MichoSchmidt
@MichoSchmidt 5 жыл бұрын
Sorry I don't remember the song, and I did never write it on the description too :(
@apina_
@apina_ 3 жыл бұрын
Block Party
@MichoSchmidt
@MichoSchmidt 5 жыл бұрын
Remember to join the discord: discord.gg/pstTS8V
@demoniolrayyyt3005
@demoniolrayyyt3005 6 жыл бұрын
Sir how can i click or just tap the button for cooldown instead of pressing number 1 in the keyboard to work.
@MichoSchmidt
@MichoSchmidt 6 жыл бұрын
Hello! Easiest way is to create a Button instead of Image, and then on the Botton you can see On Click () There you click on the ( + ) then you choose the script in "None (Object)". And in the script can you create a function / void like public void Skill() { // Add the code here. Debug.Log("Used Skill"); }
@demoniolrayyyt3005
@demoniolrayyyt3005 6 жыл бұрын
MotGameStudio hi, sir can you tell me the whole script here? I cant understand sorry, i really appreciate your time ☺
@demoniolrayyyt3005
@demoniolrayyyt3005 6 жыл бұрын
MotGameStudio im using it for android for my skill to cool down every time i tap on it. Thanks sir in advance 😁
@MichoSchmidt
@MichoSchmidt 6 жыл бұрын
Ohh ok sounds great! Hmm I haven't tried Button on Android device. You can tell me if it works.
@demoniolrayyyt3005
@demoniolrayyyt3005 6 жыл бұрын
MotGameStudio sir i dont know how can teach me on the script.
@markanthonybaladad8421
@markanthonybaladad8421 4 жыл бұрын
For mobile legends bro?
@MichoSchmidt
@MichoSchmidt 4 жыл бұрын
Never tried that to be honest 😁
@SasukeUchiha723
@SasukeUchiha723 7 жыл бұрын
Your video is simple and awesome
@MichoSchmidt
@MichoSchmidt 7 жыл бұрын
Thanks! Soon I gonna release some more easy and useful tutorials.
Unity  (Import Model + PNG Texture)
0:59
Micho Schmidt
Рет қаралды 8 М.
TOUCH CONTROLS in Unity!
16:09
Brackeys
Рет қаралды 1,3 МЛН
#behindthescenes @CrissaJackson
0:11
Happy Kelli
Рет қаралды 27 МЛН
Как Ходили родители в ШКОЛУ!
0:49
Family Box
Рет қаралды 2,3 МЛН
УНО Реверс в Амонг Ас : игра на выбывание
0:19
Фани Хани
Рет қаралды 1,3 МЛН
Unity3D Quick Tips: Cooldown Timers
4:48
GucioDevs
Рет қаралды 26 М.
Devlog feat RPG Progress - I WAS VERY TIRED
7:38
Micho Schmidt
Рет қаралды 3,3 М.
HOW TO MAKE A DASH MOVE IN UNITY - EASY TUTORIAL
7:06
Blackthornprod
Рет қаралды 228 М.
Tools EVERY Software Engineer Should Know
11:37
Tech With Tim
Рет қаралды 3,3 М.
How 10 Mods Completely Changed the Fate of My City! | SB 5
39:45
City Planner Plays
Рет қаралды 87 М.
How to make a LOADING BAR in Unity
11:25
Brackeys
Рет қаралды 748 М.