Unity 2D Tutorial About How To Make Character Run By Holding Shift Button Down In Simple Game.

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

Alexander Zotov

Alexander Zotov

Күн бұрын

Пікірлер: 42
@Chief-wx1fj
@Chief-wx1fj 6 жыл бұрын
I really like these straight to the point short tutorials. They stand out from the other 20 min long boring tutorials. Keep up and you’ll get tons of subscribers!
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Thanks a lot) I really like you like them)
@Mr_Kartofan_
@Mr_Kartofan_ Жыл бұрын
Dude, you have no idea how much you helped me! I've been working on this for 2 hours, but you made it easier for me. Thanks!
@Yabadabaduuuuuuuuu
@Yabadabaduuuuuuuuu 4 жыл бұрын
*The* easiest tutorial I've seen on sprinting. It's a shame I hadn't found this sooner
@AlexanderZotov
@AlexanderZotov 4 жыл бұрын
Thank you very much!
@jumpskull
@jumpskull 3 жыл бұрын
Thank You so much!!! it works like charm
@SageNode
@SageNode 5 жыл бұрын
man that was so simple, thank you so much!
@AlexanderZotov
@AlexanderZotov 5 жыл бұрын
Happy to help!
@___okami___
@___okami___ 6 жыл бұрын
This works great! But i want to know how to add an animation to it, specifically the script. Thanks!
@filipolendzki8276
@filipolendzki8276 4 жыл бұрын
great video, thank You
@AlexanderZotov
@AlexanderZotov 4 жыл бұрын
My pleasure
@Halil_98
@Halil_98 5 жыл бұрын
Thank you! :)
@AlexanderZotov
@AlexanderZotov 5 жыл бұрын
You are welcome!
@tadeotorres3571
@tadeotorres3571 4 жыл бұрын
I would need to know how to combine the shift key with A or D
@issqsskatingclips9108
@issqsskatingclips9108 3 жыл бұрын
Vector3 movment = new Vector3(Input.GetAxis("Horizontal"), 0f, 0f); transform.position += movment * Time.deltaTime * moveSpeed; should combine with the moveSpeed variable.
@ТаинственнаяЛичность-д6э
@ТаинственнаяЛичность-д6э 6 жыл бұрын
Подписался. Соглашусь с другим комментарием. Интересно посмотреть на урок по падающим платформам, только с небольшой задержкой перед падением. Секунды 1-2, чтоб было время у игрока перепрыгнуть, а если чуть задержится, то падает. Да и вообще много чего интересного и полезного с платформами можно придумать. Например обычная платформа, но когда на нее прыгает персонаж, она поднимается вверх на указанную высоту. Как только персонаж с нее спрыгивает, то она возвращается в исходное положение. От себя могу добавить - хотелось бы узнать как добавить коллайдер, который убивает с задержкой, а не сразу при столкновении с ним. На примере всё тех же платформ - прыгнул на платформу и первые 2 секунды можно на ней просто стоять, но через 2 секунды включается анимация (платформа загорается) и отнимает жизни.
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Хорошие идеи) будем воплощать)
@asherkhan4814
@asherkhan4814 6 жыл бұрын
nice tutorals..can u make some tutorial on restaurant food games?
@dcry1003
@dcry1003 3 жыл бұрын
how do you incorporate this into a ui button?
@rendioktaviardo3757
@rendioktaviardo3757 6 жыл бұрын
this is great, but can you make tutorial about player movement in top down 2d game?
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Sure I can. kzbin.info/www/bejne/faHFZ6mQnJtobZo kzbin.info/www/bejne/p3-0moeEerCchpI kzbin.info/www/bejne/hqq1p6V6abR0Z68 kzbin.info/www/bejne/qZ7Mm3tom8eqbtU
@leonidberezin7320
@leonidberezin7320 6 жыл бұрын
Спасибо , как всегда отличное видео)
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Спасибо)
@Stason4ikRUS
@Stason4ikRUS 6 жыл бұрын
Идеи для видео: 1. Тайные комнаты, они не видны пока ты в них не зайдешь. 2. Платформа при наступлении на неё она падает вниз и респавнится через некоторое время. 3. Переходы между сценами. Заходишь в дверь и попадаешь на следующую сцену.
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Ты кладезь идей))
@Stason4ikRUS
@Stason4ikRUS 6 жыл бұрын
))
@fabiovaz233
@fabiovaz233 6 жыл бұрын
Thanks!!
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
You are welcome)
@mushrooms9138
@mushrooms9138 6 жыл бұрын
Thanks
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
You are welcome)
@mushrooms9138
@mushrooms9138 6 жыл бұрын
I am from Indonesia. I am a beginner in unity. Every day watch your vidio. Very helpful :v
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Glad to hear it) Good luck with your beginnings!
@aonmuhammad4305
@aonmuhammad4305 6 жыл бұрын
nice
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Thanks!
@theredknight3736
@theredknight3736 4 жыл бұрын
how to make it public ?
@theredknight3736
@theredknight3736 4 жыл бұрын
this is my code public class Movement : MonoBehaviour { Rigidbody2D rb; public float speed = 5f; private void Awake() { rb = GetComponent(); } void Update() { float yMov = Input.GetAxisRaw("Horizontal"); float xMov = Input.GetAxisRaw("Vertical"); rb.velocity = new Vector2(xMov, rb.velocity.y).normalized * speed; rb.velocity = new Vector2(yMov, rb.velocity.x).normalized * speed; if (Input.GetKey(KeyCode.LeftShift)) speed = 14; else speed = 9; } }
@Stason4ikRUS
@Stason4ikRUS 6 жыл бұрын
Лучший)
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Спасибо!
@8978martin
@8978martin 6 жыл бұрын
Cool Alexander please Cat chat bot commands chat and commands actions for texts please
@vidno.siyanie
@vidno.siyanie 6 жыл бұрын
Скобки в качестве улыбки в описании немного выдают что ты русский :D
@AlexanderZotov
@AlexanderZotov 6 жыл бұрын
Только скобки?) А имя?
@Stason4ikRUS
@Stason4ikRUS 6 жыл бұрын
Ещё видео "Как сделать вишневую настойку на водке?"
6 DEVS Make a GAME without COMMUNICATING!!
13:53
Blackthornprod
Рет қаралды 1,8 МЛН
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 108 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
Adding BGM And On/Off Sound Button - Easy Unity Tutorial
5:56
2D Top Down Movement UNITY Tutorial
7:21
BMo
Рет қаралды 232 М.
How to make 2D game art! Simple assets, even if you are bad at drawing
7:22
I Paid Devs on Fiverr to Make an Open World Game
8:33
Minimunch
Рет қаралды 514 М.
Why I am NOT Making These Enemies
17:06
Deynum Studio
Рет қаралды 245 М.
How To Wall Slide & Wall Jump In Unity
6:38
bendux
Рет қаралды 80 М.
Creating SMART enemies from scratch! | Devlog
5:40
Challacade
Рет қаралды 392 М.
Unity Top Down Colliders and Character Movement - Tutorial
8:32
CouchFerret makes Games
Рет қаралды 200 М.
Can I 100% Superliminal and Get a Refund?
23:36
Gronf
Рет қаралды 404 М.
How to treat Acne💉
00:31
ISSEI / いっせい
Рет қаралды 108 МЛН