예제 #1
0
 //=====================================================
 void Start()
 {
     wordOutput = GetComponent <IWordReceive>();
     timer      = 0;
     count      = 0;
     interval   = INPUT_TIME / wordNum;
 }
예제 #2
0
    // Use this for initialization
    void Start()
    {
        inputField = FindObjectOfType <InputField>();

        iWordReceive = FindInterface.FindObjectOfInterfaces <IWordReceive>();

        InitInput();

        inputField.ActivateInputField();
    }
예제 #3
0
 //=====================================================
 void Start()
 {
     wordOutput  = GetComponent <WordOutput>();
     wordCounter = GetComponent <WordCounter>();
 }