I have a problem with next Button from UI DIALOGUE
In editor mode, it works as shown by the lecturer (I literally copied the code), but when I put it in build mode, it doesn’t show me the button ? Any suggestions?
I show pictures:
This is a known issue. It turns out that OnValidate() is never called in a built player, meaning that the node lookup never gets built. The solution is to make sure that you have OnValidate() and Awake() outside of an #if UNITY_EDITOR code block, and that you call OnValidate() within Awake()