コード例 #1
0
 private void Awake()
 {
     instance       = this;
     buttons        = GetComponentsInChildren <Button>();
     skillAPI       = GetComponent <TecktalSkillsAPI>();
     historyButtons = new List <HistoryButton>();
 }
コード例 #2
0
 void Awake()
 {
     instance   = this;
     skillAPI   = GetComponent <TecktalSkillsAPI>();
     videoLists = new VideoList[] { allVideos, featured, popular };
     EmptyVideoLists();
     //gameObject.SetActive(false);
 }
コード例 #3
0
 private void Start()
 {
     skillAPI = GetComponent <TecktalSkillsAPI>();
     skillAPI.GetAllPublishSkillPath(OnSuccess, OnError);
     buttons = GetComponentsInChildren <Button>();
     UpdateList();
     Debug.Log("Start coroutine");
     if (autoShowFirstSkill)
     {
         StartCoroutine(ShowVideos());
     }
 }
コード例 #4
0
 private void Awake()
 {
     skillAPI = GetComponent <TecktalSkillsAPI>();
 }