Is there a way to hide the Uduino UI on screen?

Issue #43 resolved
Former user created an issue

Just wondering if there's a way to hide the UI on Unity for the final build. I've tried changing all the Scale values to 0, but it pops up again when previewing. I thought it could be a setting within UduinoManager Script, but am too afraid of risking the entire thing. Please and thank you!

Comments (2)

  1. Lander Eguia

    I know there should be a better way but i created a script and added to the UduinoManager:

    public class UIclose : MonoBehaviour
    {
    // Start is called before the first frame update
    void Start()
    {
    transform.GetChild(0).gameObject.SetActive(false);
    }

    }

  2. Log in to comment