Great video. This is the best UIToolkit intro I've seen. And I now realize that CSS and its relatives will haunt me until the day I log off.
@GameHeroStudio34 ай бұрын
Each time I watch one of your tutorials, most of what you're saying actually sticks and makes sense. Watch, follow, and take notes. These tutorials will seriously level up your Game Dev Skills and understanding. Thank you brandon!
@SharpDressedBear10 ай бұрын
Great tutorial! I didn't even know about the new UI system until now
@MelMacaluso6 ай бұрын
Thanks! I basically managed to do a fully fledged basic menu with everything I needed just watching the video. As always super useful! We can perhaps avoid the casting "as Button>" by using the syntax: "Q("selector")"
@shockingchris980910 ай бұрын
I'm surprised you packed that all into such a short (haha "short") video. I've been hesitant to use UI Toolkit after seeing it used in the Happy Harvest, but this made it look really easy, especially when you use your own sprites and make use of the USS style sheets and transitions (that was SO cool for such little work). Great job again Brandon. Lovin the videos, hope you guys are making it with KZbin, you're killin it!
@developerchannel51397 ай бұрын
Great tutorial, you're pleasingly fast yet explain everything in painstaking detail. I wouldn't mind seeing more and more advanced tutorials from you Brandon as you level up yourself, you're great at passing the knowledge on!
@pocket-logic115410 ай бұрын
Excellent info. Concise, informative, easy to digest ;-)
@ahla298 ай бұрын
Better then most tutorials out here! Much Love from Sweden!
@edstamonica387010 ай бұрын
Nice! Do more of this UIToolkit please 🥺
@mohammedadel78496 ай бұрын
Thanks. This helped me a lot in moving from the legacy UI system to the UI toolkit.
@AbdullahGameDev10 ай бұрын
More about it, please.
@petipois2810 ай бұрын
Thank you so much, such a great tutorial
@jhhh41225 күн бұрын
Really great tutorial, thanks for sharing.
@tinalava6810 ай бұрын
Thanks a lot! I really hated making the UI with the default UI system. That won't be a problem anymore :)
@uppsalazombiewalkАй бұрын
Coming from a web background, this was an excellent decision on Unity's part. This has the potential to be even better than CSS at gaming UI.
@sleepingcolossus9 ай бұрын
Just what I needed for a quick tech demo. Thanks!
@crynfish56052 ай бұрын
Just what I was looking for!
@MarcWithaC-BlenderAndGameDev10 ай бұрын
Another great tutorial. Very useful overview for helping decide whether you might want to use this feature or not. I had heard name name 'UI Toolkit', but that was about it. It looks like WPF and the way it uses XSLT. I have UI on my 3D objects, and it looks like Unity still recommends uGUI for that. But this might make sense for the menu. Another complicated new system to learn, and I still haven't gotten the hang of thew new input system yet.
@lkhgames9 ай бұрын
Great video, however for those who don't know yet, Unity Developed a binding system for the UI Toolkit. Yes, you don't need anymore code telling which text gonna show what, which button gonna do what, etc. Is just drag and drop. Video link: kzbin.info/www/bejne/foKThaCFbb90atEsi=8ieYa3i-O0RjdE9V
@MrButiierАй бұрын
Leaving you a comment because thank you!
@VoodooD0g5 ай бұрын
Whats the point having all buttons register to the same event? Why is not a single ui toolkit video showing/explaining how to actually do ui and open and close new windows and popups (when pressing the options button for example). No one does this.....
@aleksp876810 ай бұрын
Holy sht I had no idea this existed
@Ingo.Mclean9 ай бұрын
a great starter tutorial!
@isrmicha4 ай бұрын
Awesome! Thanks man!
@Flem100DK2 ай бұрын
Great video!
@tubanami3 ай бұрын
as a fullstack web developer I'm so happy that I can use my knowledge on unity 🥰 Last time I got happy like this was the time I realize I could style gtk windows with css lol ty for your content, +1 sub :)
@depre66038 ай бұрын
Are magic strings the only way to interact with the ui builder via c#?
@castlecodersltd10 ай бұрын
Nice tutorial. Thank you 🙂
@mohsinahsin68412 ай бұрын
precise and neat.
@yusufayvz9 ай бұрын
You're awesome teller. Thank you dude.
@DrSeal10 ай бұрын
Great video, any chance you'll make a video about using using the new system to make a custominspector?
@sasquatchbgames10 ай бұрын
just released that today actually!
@DrSeal10 ай бұрын
@@sasquatchbgames King, I will watch immediately, thank you for your work, truly inspiring.
@GBSCronoo10 ай бұрын
Can you please do a tutorial on popup windows over already existing UI in UI toolkit?
@raingamedev70210 ай бұрын
Thank you! This is a really well structured tutorial. Brief but more than enough to start using UI toolkit. Can you recommend or do you know if it is safe to start using this for WebGL?
@Kiran.KillStreak5 ай бұрын
your keyboard keystrokes are awsome, which brand model was it? nice tutorials.
@T0mat0_S0up2 ай бұрын
Can you show us all of the actions and the bindings on every one at 8:17? Like how did you make all of those?
@mutlugameofhalit4 ай бұрын
Is UI Toolkit only for Screen Space Overlay? Aren't there any way to use for World Space?
@yale3d5 ай бұрын
Just curious: why is it a good practice to unregister an event OnDisable when you registered it in Awake? Your button becomes unusable as soon as you disable the menu.
@attilabacsa2808Ай бұрын
To prevent memory leaks. In .Net you need to explicitly unregister events once not needed, otherwise they can cause leaks.
@knowercoder9 ай бұрын
This is very helpful
@Sosa82910 ай бұрын
This is amazing and easy to understand. If I want to animate it at certain events, let's say at scene start. or maybe if I want to make the options menu pop up when pressed, do I make this animation using the transitions you mentioned or is there a way to use the unity animator? if the transitions can do it then it's probably easier and gives more control.
@rocco.uploads4 ай бұрын
As someone who actually likes the Unity UI System, I think this is worse. Is it more intuitive... yes, does it have features I wish the UI System had... yes, but is it faster to make stuff... absolutely not. I love that I can create my menus and drag and drop events (even changing them in play mode without needing to recompile) and get everything set up in MERE MINUTES, and I don't see the UI Toolkit giving me that ability. Having to individually subscribe buttons to events feels odd, and also seems less efficient, since the UI System doesn't need to do that processing on Awake or Start, since the EventTrigger and OnClick() event already have that "baked" into them before the game even starts. Great tutorial tho, I definitely learned a whole lot more (and faster) than fumbling around and trying to figure it out
@MG-nn8dy3 ай бұрын
perfect tyvm
@Develeon645 ай бұрын
I created a whole new project. When I follow the first 5 minutes of the tutorial up to the point showing the labels in the game view the first time; I can see the labels, too. But they are not on a background, instead I can see the 3D scene. Even if I manually add a background color to the canvas in the UI Builder (where it is displayed, but not in the game itself). Did I miss something?
@darkenaxe7 ай бұрын
Im working on a Unity project for more than 3 years now and i cannot believe i never heard about UI Toolkit (it is for sure not a lack of youtube procrastination on my side...). Is it my bad or is Unity never talking about it ? Thank you for the video though :)
@starbuck39806 ай бұрын
Dont understand how works the new UI. I added a Progress bar and i cant modify any of the style properties of the child objects, all are greyed out
@epicrelaxingambientmusic83422 ай бұрын
can you make videos for tabs and inputtext ?
@ComputingCode2 ай бұрын
The moment you said USS and I see that's basically a CSS...I was like THANK GOD! Not in the sense that I love CSS.....it's annoying as heck...but at least I don't need to learn a styles system...it's something that I understand
@YousefBuHazza19 күн бұрын
It looks like a great way to work with UI in Unity, I tried adding Arabic text and unfortunately UI toolkit does not support it yet
@sorenschultz11445 ай бұрын
How do you get the UIDocument to render the UI in the sceneview? Even if I start up a new project and follow these steps, the UI only renders in the Game/Simulator view for me. In the Scene view, it's invisible... I also checked to make sure that the UI layer is visible, and scene view is on. Furthermore, I'm using the UnityDefaultRuntimeTheme for my panel settings. Why doesn't it show up?!
@rangefreewords3 ай бұрын
types hover for button 'hover' functionality that works for a childs 3 button cellphone game but if you have Jane's Longbow 2 (imagine typing hover for 60+buttons)... 24years since I forgot visual basic...
@papwap15828 ай бұрын
Would this work with Netcode for gameobjects?
@febriankamalrosyadi2387 ай бұрын
is anyone knows how to change the scene if we click the play button in ui toolkit ?
@derikfant83110 ай бұрын
Блин, я в наушниках испугался звука на 6:40 )) подумал на секунду, что шмель в левое ухо прилетел
@beatrageGameSalad10 ай бұрын
It's a real shame that this tool didn't come out since day one in unity....it would have been way more easier for us old coders! 😅
@SadTown99Ай бұрын
I always thought it was very strange Unity games seem to always have such a basic & boring UI, yet ‘RPG Maker’ games have crazy artistic & unique menus.. I’d figure a powerful engine like Unity would be easily capable of so much more 🤷♂️… However, I’m a beginner in game dev & only have basic knowledge... So I don’t really understand why this is 🤔
@Tymon00007 ай бұрын
Getting buttons by strings...
@simonmalicek10 ай бұрын
Do I need to be Chinese to access it??
@Coco-gg5vp10 ай бұрын
First
@farshatowalex7 ай бұрын
Please no. It looks like vanilla JavaScript +css from 2008. It’s still better than default unity ui system but it’s still so ugly 😢😢😢
@Tymon00007 ай бұрын
To be honest I don't think it's better.
@farshatowalex7 ай бұрын
@@Tymon0000 yeah. You’re right. Considering the fact that we can’t use world space with it makes it 60% worse than it could be as well
@jonathanh532010 ай бұрын
Imagine still using Unity haha. It has no future and basically a waste of time using.
@danielmisra291210 ай бұрын
gotta love the godot fanboys ^^
@jonathanh532010 ай бұрын
No. Unreal Engine, Unity is not even close to what Unreal has to offer. But yes, I would prefer Godot every day before Unity. What you ultimate have to face, is that the Unity fanboys will never leave Unity - sad@@danielmisra2912
@darrencook716810 ай бұрын
Imagine being such a useless tool as to wholly disrespect others' years of training and knowledge of a useful tool.
@BigDaddy-zq1cq10 ай бұрын
as someone who learned godot and unreal b4 unity and really had a "phobia" from it can confirm unity is defo a great engine its just they had stoopids dumahhs in charge in many situations it would be better than godot and surely miles ahead of unreal in 2d