How To Make An Endless Runner In Unity In Under 6 Minutes

  Рет қаралды 39,879

DevLiakos

DevLiakos

2 жыл бұрын

#madewithunity​​​​ #gamedev​​​​ #indiegame​​​​
Bend script and shader by Stone Baked Games : • Unity tutorial - world...
Project Files:github.com/DevLiakos/Endless-...
Discord Server : / discord
Support Me
Buy my games: store.steampowered.com/search...

Пікірлер: 80
@Teo_Pan
@Teo_Pan 7 ай бұрын
Thanks my friend , great video !!!!!!! From Greece 🤩🤩🤩
@Jeireme
@Jeireme 7 ай бұрын
Thank you very much! Your tutorial is very helpful
@drunkenant7319
@drunkenant7319 Жыл бұрын
Super helpful! Thanks for the tutorial
@TEK3456
@TEK3456 Жыл бұрын
Thank you very much, it was quite entertaining to watch your video and make the game step by step.
@devliakos3893
@devliakos3893 Жыл бұрын
Thank you for watching!
@TEK3456
@TEK3456 Жыл бұрын
Also forgot to mention this three weeks ago, i am a beginner in game creating, and one of the happiest achivements was making your game playable on the pc , my teachers were impressed !
@devliakos3893
@devliakos3893 Жыл бұрын
@@TEK3456 This is amazing! I am very happy i could be part of your achievement. I wish you the best on your gamedev journey.
@masteralive603
@masteralive603 Жыл бұрын
nice, clean and fast tutorial 👏👏👏👏
@devliakos3893
@devliakos3893 Жыл бұрын
Happy to help!
@YunusEmre-bh8fl
@YunusEmre-bh8fl 2 жыл бұрын
Perfect. Thank you bro.
@kozmobotgames
@kozmobotgames Жыл бұрын
It feels like Subway Surfers. Great video!
@remcee2
@remcee2 Жыл бұрын
200th Subscriber! Awesome Work!
@devliakos3893
@devliakos3893 Жыл бұрын
Thank you!!
@prosto_chel544
@prosto_chel544 Жыл бұрын
@@devliakos3893 hi bro, cool video, can you show how to do jumps and rolls
@brankoaksentijevic4542
@brankoaksentijevic4542 9 ай бұрын
Where are links to assets please?
8 ай бұрын
Bro explained the 3 month process in 6 minutes
@chongkid420
@chongkid420 5 ай бұрын
where will you put the tile prefab? is it inside the levelgenerator? and only one tile is used?
@pleasure_pixel
@pleasure_pixel Жыл бұрын
What about adding more tiles? Thanks!
@phillipables3689
@phillipables3689 Жыл бұрын
You're a great teacher!!
@devliakos3893
@devliakos3893 Жыл бұрын
Thank you very much!
@rayzen3169
@rayzen3169 9 ай бұрын
the movement does not work how can I fix it?
@duh160
@duh160 Жыл бұрын
what was the swipecontrols?does it come with any asset or it is included in unity itself?
@devliakos3893
@devliakos3893 Жыл бұрын
It is a script that i didnt think needed explaining since it manages just the swiping
@bepanther
@bepanther 10 ай бұрын
Great, Thanks a lot
@AramAnanzeh-cn7mz
@AramAnanzeh-cn7mz 8 ай бұрын
is this for mobiles??
@chongkid420
@chongkid420 5 ай бұрын
can you help me with the player movement? the player is not moving
@chongkid420
@chongkid420 5 ай бұрын
sir can you help me with the part where there became a endless platform?
@mantktayrz5241
@mantktayrz5241 5 ай бұрын
I put tiles in level generator but my charather is not going to forward and charathers is bigger than map ı don know whats happening can u help me?
@vain5508
@vain5508 6 ай бұрын
How can I add a 3rd or more tiles?
@daszx1
@daszx1 8 ай бұрын
What about iOS?
@josephk6052
@josephk6052 2 жыл бұрын
does it delete old tiles if not how to
@devliakos3893
@devliakos3893 2 жыл бұрын
It does not the easiest way to do it is start a new ienumerator for each tile destroying the tile after a fixed time
@CreateCG1
@CreateCG1 11 ай бұрын
can i use this for my game? and yes ill give credits
@devliakos3893
@devliakos3893 11 ай бұрын
Sure!
@sohanv996
@sohanv996 11 ай бұрын
Hey can u help me with the script to give controls on pc?
@devliakos3893
@devliakos3893 11 ай бұрын
you want to translate the drag controller to pc?
@bemoreprofessional9835
@bemoreprofessional9835 Жыл бұрын
It did not work for me and my son. You did not show that I should have added the LevelGenerator script to LevelGenerator object, but even after I did - it was generating tiles to the right of the player and player was running that direction sideways. I did not make any changes to the camera nor objects after creation of new project. I was not able to save the coin script to object and I have no idea which scripts or prefabs should have been edited/added after simply dropping everything to the new project. This is not a 6 minute job, but hour long without success.
@emme395
@emme395 Жыл бұрын
If your character is moving in the Z axis, in the LevelGenerator Script, change all that is in the X axis to the Z axis (at least this worked for me)
@chongkid420
@chongkid420 5 ай бұрын
@@emme395 sir where will you put the tiles? inside the level generator? please help, im currently doing it right now
@prosto_chel544
@prosto_chel544 Жыл бұрын
hi bro, cool video, can you show how to do jumps and rolls
@devliakos3893
@devliakos3893 Жыл бұрын
Hello i will have to modify the code a bit to do that once i do i will send you
@prosto_chel544
@prosto_chel544 Жыл бұрын
@@devliakos3893 Thank you, I'll be waiting you're the best
@devliakos3893
@devliakos3893 Жыл бұрын
Hello again i have been looking at the functionality you asked for to make it work you need to first create two new bools in the swipe controls script for up and down and set in the lateupdate when y > 0 as up = true and when y < 0 as down = true. After you have done that you need to add a character controller to implement the jump functionality brackeys has a really good tutorial about character controllers. This is the simplest way to do it in my opinion.
@prosto_chel544
@prosto_chel544 Жыл бұрын
@@devliakos3893 can you show it on video? Or explain more
@devliakos3893
@devliakos3893 Жыл бұрын
@@prosto_chel544 This could be a video of itself sadly i am working on a different video at the moment and i cant do much more apart from explaining how it can work
@md.salmanahmed3903
@md.salmanahmed3903 Жыл бұрын
How to add touch control?
@devliakos3893
@devliakos3893 Жыл бұрын
The swiping mechanic featured in the video works for touch on mobiles
@bonse2000
@bonse2000 Жыл бұрын
prin dw to onoma se katalava apo profora ;)
@firewatch123
@firewatch123 Жыл бұрын
i'm 201 :)
@devliakos3893
@devliakos3893 Жыл бұрын
@billgamer_6452
@billgamer_6452 2 жыл бұрын
Έλληνας είσαι ρε
@devliakos3893
@devliakos3893 2 жыл бұрын
Ναι φιλε
@billgamer_6452
@billgamer_6452 2 жыл бұрын
@@devliakos3893 σε κατάλαβα από την προφορά 🤣
@devliakos3893
@devliakos3893 2 жыл бұрын
@@billgamer_6452 αυτό είναι το καλο
@soulhunter-bbq-game4502
@soulhunter-bbq-game4502 Жыл бұрын
I need to make online mobile game can you help me please and it's fine I will pay you 💓
@devliakos3893
@devliakos3893 Жыл бұрын
I have no experience with multiplayer mechanics but everything else i can help with
@soulhunter-bbq-game4502
@soulhunter-bbq-game4502 Жыл бұрын
@@devliakos3893 if you know game BarbarQ
@soulhunter-bbq-game4502
@soulhunter-bbq-game4502 Жыл бұрын
@@devliakos3893 I need to make game exactly like this one even if same everything
@devliakos3893
@devliakos3893 Жыл бұрын
I checked the game out it appears to be a multiplayer game which i am not experienced enough in to help you with it
@soulhunter-bbq-game4502
@soulhunter-bbq-game4502 Жыл бұрын
@@devliakos3893 do you know any face book group or discord have people can help me plz
@TheCamilo2009
@TheCamilo2009 Жыл бұрын
it doesnt work
@devliakos3893
@devliakos3893 Жыл бұрын
Hello! Can you explain which part doesnt work so we can figure it out?
@TheCamilo2009
@TheCamilo2009 Жыл бұрын
@@devliakos3893 in the level generator the character doesnt appear in the title and the camera doesnt show the game i dont know what to do
@devliakos3893
@devliakos3893 Жыл бұрын
hliasparafestas@gmail.com this is my email can you sent me an example of your code and an image of what you are seeing in unity?
@prosto_chel544
@prosto_chel544 Жыл бұрын
@@devliakos3893 hi bro, cool video, can you show how to do jumps and rolls
@TheCamilo2009
@TheCamilo2009 Жыл бұрын
@@devliakos3893 ok ok
Procedural Generation: Endless Runner Unity Tutorial (Updated 2023)
9:28
Rigor Mortis Tortoise
Рет қаралды 14 М.
3D ENDLESS RUNNER IN UNITY - PLAYER (Pt 1)
15:55
Practical Programming
Рет қаралды 88 М.
The magical amulet of the cross! #clown #小丑 #shorts
00:54
好人小丑
Рет қаралды 24 МЛН
Зомби Апокалипсис  часть 1 🤯#shorts
00:29
INNA SERG
Рет қаралды 7 МЛН
Why? 😭 #shorts by Leisi Crazy
00:16
Leisi Crazy
Рет қаралды 28 МЛН
How to make a Video Game - Godot Beginner Tutorial
1:17:12
Brackeys
Рет қаралды 793 М.
ChatGPT Can Now Talk Like a Human [Latest Updates]
22:21
ColdFusion
Рет қаралды 193 М.
5 Minute ENDLESS RUNNER Game UNITY Tutorial
5:10
BMo
Рет қаралды 103 М.
Make an Endless Runner in Unity 2020 / 2021 - part 1 of 2
32:38
Imphenzia
Рет қаралды 170 М.
I Paid Game Developers on Fiverr to Make the Same Game
9:49
BadGameDev
Рет қаралды 3,4 МЛН
How To Make A Simple Car In Under 4 Minutes | Unity Tutorial
3:22
How to Make a 3D Endless Runner in Unity FULL TUTORIAL
3:14:21
Unity Tutorial - A Temple Run prototype in 10 minutes
12:53
James Brady
Рет қаралды 32 М.
The magical amulet of the cross! #clown #小丑 #shorts
00:54
好人小丑
Рет қаралды 24 МЛН