Example #1
0
		void OnEnable()
		{
			instance = this;
			StartCoroutine(ReadData());
		}
Example #2
0
		void Start()
		{
			jsonBase = JsonBase.instance;
		}
Example #3
0
	//	ControlManagerMod3 controlManagerMod3;
		void Awake()
		{
			jsonBase = JsonBase.instance;
		//	controlManagerMod3 = ControlManagerMod3.instance;
		}
        //Register as the TableView's delegate (required) and data source (optional)
        //to receive the calls
        void Start() {
            m_tableView.dataSource = this;
			jsonBase = JsonBase.instance;
        }
Example #5
0
		void Awake()
		{
			jsonBase = GameObject.Find("ControlManagerArticle").GetComponent<JsonBase>();
		}