Like the title says. Every tutorial I could find on ui buttons shows how to script the button to change color or text but i want to learn how to get better use of it like change the scene or effect rigibodies. Maybe also a direct me to a list of functions that dumbs down an explanation on each function because I’m really lost there. Right now I’m trying the learn section but haven’t got anything from it yet. Thanks guys
You’re thinking of this incorrectly. Changing scenes or affecting rigidbodies has nothing to do with UI buttons, so you’re unlikely to find a tutorial which teaches exactly the effect you want. All you need from a UI button tutorial is to learn how when you press a button it calls a custom method you write. I’m sure the tutorial you’ve already mentioned which changes text color already does that.
After you’ve learned how to use a UI button to call your own method, now you can put whatever code you want in that method to do anything you want. You want to learn how to change scene? Find info on that, which won’t have anything to do with UI button tutorials (because they have nothing to do with each other) and put that code in the method which you’re already calling when the UI button is pressed.