Wow! Fantastic stuff. Even though I didn't understand everything in this lesson but I still learnt new stuff. I really appreciate the amount of energy you put into making these. Absolutely phenomenal. Thank you
@sakisgrig5 жыл бұрын
Your two (relating) videos were excactly what I needed to create my scroller. I am very grateful :)
@pressstart68645 жыл бұрын
Love this feedback. Thank you!
@sathishvasudev17524 жыл бұрын
Hey bro, Your video was very helpful for me. I had some issues though but got that figured out. Keep up the good work, mate!
@mrsypo025 жыл бұрын
this is the most clean unity tuto i ever seen god. job brother !!!
@MrWaaaaah4 жыл бұрын
Great tuts. As a beginner myself, I get a good understanding as you explain straight to the point. Your speed helps too; vids that go too slow waste alot of time.. LOL. Subscribed *thumbsup*
@lominero52 жыл бұрын
Great video super easy to understand
@oliverphilbrick29864 жыл бұрын
Came here to see an effective way to make the buttons actually load levels. Perhaps make a part 2? as it stands now, a strong tutorial for laying out a bunch of buttons, but not very useful if you don't demonstrate how to actually wire them to functions.
@emilis37795 жыл бұрын
You video is very entertainment. I love how you explain every thing from the video. Keep up the good work :)
@pressstart68645 жыл бұрын
Thank you, this video was a hard one to explain ;)
@ufukhan66965 жыл бұрын
You're the BEST ❤❤
@pressstart68645 жыл бұрын
Thank you!
@alinazari20464 жыл бұрын
Your tutorials are amazingly awesome, keep on :)
@arcangy775 жыл бұрын
awesome!! I love this kind of tutorial!! fast and very useful!! great job ^^
@pressstart68645 жыл бұрын
Cheers my dude
@teu23874 жыл бұрын
ur soo underrated, good job u earned a sub man
@cocagamingvideo4 жыл бұрын
Amazing tutorial ! I was wondering if it was possible to use a button in order to swipe to a certain page; like an Option button that when you press it, it swipes directly to a certain panel (currentPage)? Thank you so much for your great tutorials :D
@svenwierenga25754 жыл бұрын
Never sad anything! Thanks for the great video!!!
@chrisshanaz5 жыл бұрын
Thanks for the great tutorial , how can i make it that each level icon goes to a different scene. Thanks!
@josechowyi5 жыл бұрын
having the same problem
@djdee043 жыл бұрын
@Bendegúz Anisics hey, if u don’t mind can you show us how lock levels and unlock them as we progress . thank yo
@bisharakhuri25045 жыл бұрын
5:50 a reminder for me :D
@gamemaster_tv5 жыл бұрын
Please, someone smart: How can I make Main Camera swipe along the UI buttons?
@jezuinnit25703 жыл бұрын
Yo Waldo I tried this and I used the source code and I applied the grid layout group but i get an error that says "NullReferenceException: Object reference not set to an instance of an object LevelSelector.SetUpGrid (UnityEngine.GameObject panel) (at Assets/ScriptsLevelSelector.cs:47)" please help
@suikasuika41574 жыл бұрын
i wish you did more tuto i like the way you make them
@ei050563 жыл бұрын
I don't get it, you had already added the GridLayoutGroup to the Panel in the Unity Editor, why do you need to do it again in the code?
@justl71533 жыл бұрын
I have had same question, don't add it and everything will work fine.
@ei050563 жыл бұрын
@@justl7153 Yup, that's what I did.
@NSL2000-t3c4 жыл бұрын
I have only one question... what do I have to do so when I press on the level button it takes me to another scene??????????
@punchspelledbackwards4 жыл бұрын
using UnityEngine; using UnityEngine.SceneManagement; public class Script : MonoBehaviour { void SelectLevel(string scene) { SceneManager.LoadScene(scene); } } you can also load scenes by making a string variable then just loading it, like so: using UnityEngine; using UnityEngine.SceneManagement; public class Script : MonoBehaviour { public string levelToLoad; void SelectLevel(string scene) { SceneManager.LoadScene(levelToLoad); } } or you could do it with build indexes: using UnityEngine; using UnityEngine.SceneManagement; public class Script : MonoBehaviour { void SelectLevel() { SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1); } } this is for if you want to load the next scene bte ^^
@djdee043 жыл бұрын
@@punchspelledbackwards hey can you show, how to lock levels and unlock them as we progress. Thank you
@punchspelledbackwards3 жыл бұрын
@@djdee04 kzbin.info/www/bejne/d4LTdaeog690e7c
@bene57765 жыл бұрын
I‘ve got a problem! With any new Panel/Page i is reset to 1. So I‘ve got 40 Levels on 2 pages: on the 1. Page are levels 1-20 and on the 2. page should be levels 21-40 but there are also the levels 1-20 because i is reset to 1... Do you have any solution for that? Thanks for the tutorial and your reply.
@pressstart68645 жыл бұрын
If you use the code in the video, it should solve your problem. At 15:40 the numbers increment for each page.
@krishshah83065 жыл бұрын
How could you make it so that each icon, when clicked, would go to its associated level because you cannot add a script to a game object that doesn't exist until you start it.
@pressstart68645 жыл бұрын
You can add a script to the icon before you make it a prefab or you can use addcomponent to add it during runtime.
@TheGeneliia5 жыл бұрын
@@pressstart6864 I wrote this code but it always go to last scene. in for : icon.GetComponent().onClick.AddListener(delegate { goToLevel(i); }); other code: private void goToLevel(int sceneNumber) { SceneManager.LoadScene(sceneNumber); Debug.Log(sceneNumber); }
Ahmet Bilal ÇELİK Hey I figured it out if u need help
@daw58354 жыл бұрын
@@aferg8587 can you help me?
@CaosCreativeStudio2 жыл бұрын
so how do you go to the next level when pressing a button
@bkkaan523 жыл бұрын
why my all levels are appearing on the same page and creating only one panel?
@ConcreteJungleGames4 жыл бұрын
@Press Start Is there a way to press a button and have the screen swipe in the same way?
@uhrgmreghagemge74195 жыл бұрын
Hello, I'm not sure why It doesn't work for me. I copy pasted the code, created everything like you did even the button size, image size. The problem seems to be that the script doesn't take into account the image dimension , only the button When I print the iconDimensions = levelIcon.GetComponent().rect; It prints the button dimension and not the image, you said that the script will caculate the dimension based on the icon am I missing something ? Thanks for your help That is how it looks like : imgur.com/a/X2C5yip
@hollowbloop36625 жыл бұрын
"panel.transform.SetParent(thisCanvas.transform,false);" is the line thats casuing your issues. Unfortunately do not know how to fix it
@hollowbloop36625 жыл бұрын
Do not make the 'levelHolder' GameObject use a prefab but rather let it be the normal gameObject from the Scene. This fixed the problem for me. Hope this helps.
@TheTylerBlair5 жыл бұрын
Check to see if you scaled the Icon prefab. Change the width and height attributes and reset the x and y scale back to 1.
@danieljayne86234 жыл бұрын
The last video was posted 10 months ago. Where's Waldo? :(
@cfpwastaken4 жыл бұрын
The Button is not showing in Game and i need to make them very small because when i create one of thoose buttons they are displayed SOOOOO HUGE!
@thebluefox6513 жыл бұрын
It thought at first that it would take me a long time and than it would'nt work and than I'll try it again and it would'nt work again, But you explain it well and easy to know what you say, you dont type so fast or so slow, it took me long but it worked! Thank you SO SO MUCH
@computercrafty90903 жыл бұрын
I have an error. After displaying the no. of icons specified, it displays all the other icons down. Does anyone have a fix please. If yes then reply as fast as you can. Thanks in Advance
@EgeDai5 жыл бұрын
man you had so much room in your sound I thought my speakers were on with open ear headphones :D
@__Hay_Dar__3 жыл бұрын
on start panel should scroll to the last unlocked level ... it would be great if you make a video for this scenario
@rainbowtomat08034 жыл бұрын
How dit you get the trophy icon
@Zap.zz.2 жыл бұрын
JUST WOW
@Zap.zz.2 жыл бұрын
Great Tutorial😁
@hypersolfi79883 жыл бұрын
when my buttons come in they go over the top and underneath the screen
@TomerGamerTV3 жыл бұрын
and how do I make it clickable?
@rainbowtomat08034 жыл бұрын
How do jou make the clone 06:40
@chinyereajala98864 жыл бұрын
I've implemented a way to load the scenes but how do I lock them, to play a scene after finishing the last kind of system. Whatever I try just locks everything up😅.
@djdee043 жыл бұрын
@chinyere, if you don’t mind can you share the codes to launch the level??
@szymonjarosz96274 жыл бұрын
Hey can you please help me im trying to use the firsts part of this tutorial to create image slide so i dont need all of the management of the screens i just want the user to have a max out pages your input would be amazing
@szymonjarosz96274 жыл бұрын
Lol worked it out
@thisalrathnayake94603 жыл бұрын
@@szymonjarosz9627 hold im having the same problem, what was the fix?
@NonHuman694 жыл бұрын
i have a question i get this error do you now how i can fix this Object reference not set to an instance of an object and i get this as a messege Can't add 'GridLayoutGroup' to Page-1 because a 'GridLayoutGroup' is already added to the game object! A GameObject can only contain one 'LayoutGroup' component.
@computercrafty90903 жыл бұрын
remove the grid layout group from the panel(the same panel that has the level buttons). The code itself will add it so you dont had too. Had the same error tho. Welcome :)
@lcd110014 жыл бұрын
14:13 is the fixed
@NajeksYoutube5 жыл бұрын
Everything is good but I think you forgot about " how to make buttons working". How to attach an onClick function to them.
@aferg85874 жыл бұрын
Did you figure it out? I cant figure out how to make each button take me to a unique scene
@Zombivoro4 жыл бұрын
@Bendegúz Anisics Thanks, without this comment the tutorial is pointless. Although, I don't think it's a great solution. The Level Selector script should had been made with this in mind so you don't need to get the level number from the button text number, which I would say it's a pretty bad practice.
@chinyereajala98864 жыл бұрын
@Bendegúz Anisics Hey any idea on how to lock and unlock the scenes as you play through the level
@advikmalwa3794 жыл бұрын
Thanku I really needed this 👇 Likes for this guy
@sifsif27253 жыл бұрын
What about the o'clock event? I want the levels to take me to.. well specific levels how do I add that?
@DJKi24634 жыл бұрын
4:57
@FratNightGaming4 жыл бұрын
this is not explained well for beginners. too fast
@bobbybotbop4 жыл бұрын
no ur just dumb im a beginner and i had to speed it up because of how smart i am
@tudypie4 жыл бұрын
@@bobbybotbop why you have to be like that to him... he is just learning unity calm down man
@bobbybotbop4 жыл бұрын
@@tudypie YOU CALM DOWN IM PERFECTLY CALM UR THE ONE WHO NEEDS TO CALM DOWN SHUT THE FRIK UP NOBODY ASKED YOU TUDYPIE MORE LIKE TURDYPIE
@bobbybotbop4 жыл бұрын
@Tristan Basri no one asked you
@sachinahuja38945 жыл бұрын
plz help me to make cpu based player game like ludo player vs cpu
@littlegreen48993 жыл бұрын
Oh come on I just changed from 2018vee
@LeoKing05 жыл бұрын
your not explaining good enough for beginners especially the beginning