private void Setup()
    {
        uiController.SetActive(true);

        //  Set up our options
        Options = new OptionController(new Options(), UIController.Instance.GetOptionUIScript());
        Task t = Options.Setup();
    }
Example #2
0
 // Start is called before the first frame update
 void Awake()
 {
     options = new OptionController(new Options(), script);
     options.Setup();
 }