Unity 2D Player RESPAWN Tutorial | Unity 2D Platformer Tutorial #8

  Рет қаралды 28,404

Rehope Games

Rehope Games

Күн бұрын

Пікірлер: 55
@lukeflorp55
@lukeflorp55 Жыл бұрын
your channel should definitely have more subscribers! you make simple and to the point tutorials that are always helpful, thank you!!
@RehopeGames
@RehopeGames Жыл бұрын
glad you think so, thank you so much 😊❤
@seanryan2412
@seanryan2412 Жыл бұрын
best respawn tutorial i've found, thank you very much!
@RehopeGames
@RehopeGames Жыл бұрын
Glad it helped! thank you so much 😊
@biged606
@biged606 Жыл бұрын
Thanks for tutorial! Just keep going man!👍🏻🙂
@afterafterbefore3468
@afterafterbefore3468 Жыл бұрын
Best Tutorial i've ever seen,thanks a lot
@RehopeGames
@RehopeGames Жыл бұрын
Thank you so much 🙏
@TrueRyoB
@TrueRyoB Ай бұрын
unfathomably educational and based
@Ladi_T
@Ladi_T Жыл бұрын
МУЖИК СПАСИБО, дякую ♥♥♥, thx)
@RehopeGames
@RehopeGames Жыл бұрын
🙏
@RTPcanadaGames
@RTPcanadaGames 10 ай бұрын
wonderful.! thank you so much. i have learned alot
@RehopeGames
@RehopeGames 10 ай бұрын
Thanks a lot, I'm glad hear that 😊
@ZaynoxTechDev
@ZaynoxTechDev 23 күн бұрын
Hey ! when I die for the first time and respawn, the drag particles are no longer active on my character, like the touch and fall particles. They're only present when I press “Play”, but are no longer there when I “Respawn”. What should I do?
@Taxes_Gov
@Taxes_Gov 6 ай бұрын
hlo murat/rehope games for me the script: using System.Collections; using System.Collections.Generic; using UnityEngine; public class GameController : MonoBehaviour { Vector2 startPos; private void Start() { startPos = transform.position; } private void OnTriggerEnter2D(Collider2D collision) { if (collision.CompareTag("Obstacles")) { Die(); } } void Die() { Respawn(); } void Respawn() { transform.position = startPos; } } isn't working and when my character gets destroyed by the obstacle, It doesn't respawn, please HELP ME!
@daveangeloabella6752
@daveangeloabella6752 Жыл бұрын
I am still waiting for your video about the die particle. Keep up!
@RehopeGames
@RehopeGames Жыл бұрын
So so sorry , I'm busy a little this month, but I'll share the video for you soon. Thank you so much 😉
@thepresidentgaming404
@thepresidentgaming404 Жыл бұрын
Hello Murat how to make flashing screen and dying particle because I got stocked there. Thanks for Tutorial anyway
@RehopeGames
@RehopeGames Жыл бұрын
Hello and thank you 🙏 I'm create animation for white flashing screen. And created die particle by using particle system.
@thepresidentgaming404
@thepresidentgaming404 Жыл бұрын
@@RehopeGames I created the animation and the particle but i didn't know how to put them in the script and Unity please put a video ,it's better
@yaokabanzai158
@yaokabanzai158 8 ай бұрын
@@thepresidentgaming404 решил проблему?
@babyph65
@babyph65 7 ай бұрын
​@@thepresidentgaming404 ikr, i hate when he does this
@itspotataman3628
@itspotataman3628 3 ай бұрын
how do i make it so it spawns in a specific pos?
@PotatoHaxs
@PotatoHaxs Жыл бұрын
Great video! but I have one problem, when I walk into the spike going left my character respawns but then the animation I have is backwards when I walk forwards. do you have any reason why?
@RehopeGames
@RehopeGames Жыл бұрын
I had that problem too, you can find the solution in this updated script, my friend. drive.google.com/file/d/186zkqzJrCxsKszFprDUveRWc05QfAIOO/view?usp=share_link
@RehopeGames
@RehopeGames Жыл бұрын
and thank you 😊
@PotatoHaxs
@PotatoHaxs Жыл бұрын
@@RehopeGames Hi, thanks for the help, but I use a different movement script, is there anyway to fix this without using the same script?
@NothingHere-h5g
@NothingHere-h5g 3 ай бұрын
my pivot setting is Bottom Left but the pivot still at center, help
@Mezian.7s
@Mezian.7s 2 жыл бұрын
Thanks man the video was very useful
@RehopeGames
@RehopeGames 2 жыл бұрын
Glad to hear it! Thanks a lot 😊
@ranas1300
@ranas1300 Жыл бұрын
thank you so much you saved me😭😭😭😭❤❤❤
@RehopeGames
@RehopeGames Жыл бұрын
thanks a lot 😊
@babyph65
@babyph65 7 ай бұрын
you should not skip things that you did we cant figure it out
@biged606
@biged606 Жыл бұрын
Would be amazing to make a tutorial with health bar😊
@RehopeGames
@RehopeGames Жыл бұрын
yes I'm gonna make it 👍
@guyingame3072
@guyingame3072 Жыл бұрын
can someone help me theres a problone and i cant fix it... it says : Assets/GameController.cs
@RehopeGames
@RehopeGames Жыл бұрын
Can you give me more detail ?
@MinhTien0305
@MinhTien0305 2 ай бұрын
why I can move when i respawn
@MilanToabs
@MilanToabs 9 ай бұрын
using System.Collections; using System.Collections.Generic; using UnityEngine; public class GameController : MonoBehaviour { Vector2 startPos; private void Start() { startPos = transform.position; } private void OnTriggerenter2D(Collider2D collision) { if (collision.CompareTag("Obastacle")) { Die(); } } void Die() { Respawn(); } void Die() { transform.position = startPos; } }
@babyph65
@babyph65 7 ай бұрын
thanks
@yaokabanzai158
@yaokabanzai158 8 ай бұрын
Я так понимаю вы перезапускаете персонажа, но не всю сцену?.. А как сделать чтобы после смерти перезапускался весь уровень??
@regard2503
@regard2503 7 ай бұрын
use SceneManager.LoadSceneAsync(SceneManager.GetActiveScene().buildIndex + 1);
@IM-ws5if
@IM-ws5if Жыл бұрын
Please can you create such a "Fair n Square Game" I really want to know how to create it
@RehopeGames
@RehopeGames Жыл бұрын
Yes I can, Actually you can too 😊
@FireFox_Gaming73
@FireFox_Gaming73 Жыл бұрын
this is great until i got to the part where you make the shadow disappear when you die so i copied the code but every time i died i got big and i dont know why.
@RehopeGames
@RehopeGames Жыл бұрын
I will share all project soon, You can check it with the project
@neuroworld786
@neuroworld786 Жыл бұрын
Sir plz upload a die particle and animation detailed video
@RehopeGames
@RehopeGames Жыл бұрын
I have noted your request. Thank you for your interest 😊
@pie_557
@pie_557 5 ай бұрын
Please make a video for die particle and animation
@BlueTAnimates
@BlueTAnimates Жыл бұрын
3:56 the problem is that the player cant move when you respawn
@RehopeGames
@RehopeGames Жыл бұрын
why the player flipped after hitting the obstacle?
@BlueTAnimates
@BlueTAnimates Жыл бұрын
I don’t know
@Groleyn
@Groleyn 11 ай бұрын
whats the script
@FloppaTheCatVR
@FloppaTheCatVR 7 ай бұрын
just put the script in description
@voloranic9920
@voloranic9920 Жыл бұрын
go back to the sikript again
@RehopeGames
@RehopeGames Жыл бұрын
😂
HOW TO KILL AND RESPAWN PLAYER-Unity Tutorial
6:43
bblakeyyy
Рет қаралды 60 М.
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
I Made the Same Game in 8 Engines
12:34
Emeral
Рет қаралды 4,3 МЛН
ULTIMATE 2D Platformer Controller for Unity
19:06
Sasquatch B Studios
Рет қаралды 16 М.
How Do Game Devs NOT Overscope??
9:04
Green Light Dev
Рет қаралды 9 М.
Unity Player Death and Respawn Point Tutorial
7:58
MoreBBlakeyyy
Рет қаралды 14 М.
My Scratch game got 1,000,000 views so I made another one
7:36
How Games Fake Water
22:52
Acerola
Рет қаралды 227 М.
How To Wall Slide & Wall Jump In Unity
6:38
bendux
Рет қаралды 78 М.
Easy Tilemaps and Dynamic Auto Tiling - Unity 2D
5:50
Game Code Library
Рет қаралды 29 М.
choosing a game engine is easy, actually
15:08
samyam
Рет қаралды 626 М.