Ejemplo n.º 1
0
 void Start()
 {
     currentTime = Random.Range(15, 19);
     theType     = FindObjectOfType <PasserType>();
     thePasser   = FindObjectOfType <PasserByManager>();
     speed       = Random.Range(230, 301);
 }
Ejemplo n.º 2
0
 void Start()
 {
     currentTime = Random.Range(15, 19);
     thePasser   = FindObjectOfType <PasserByManager>();
     theType     = FindObjectOfType <PasserType>();
     /* 걸어다니는 속도 250-300사이에서 랜덤으로 설정 */
     speed = Random.Range(230, 301);
 }
Ejemplo n.º 3
0
 void Start()
 {
     currentTime = Random.Range(1, 2);
     theGet      = FindObjectOfType <GetCompanyManager>();
     thePasser   = FindObjectOfType <PasserByManager>();
     theBuild    = FindObjectOfType <LandmarksHandler>();
     theChat     = FindObjectOfType <CitizenChatManager>();
     theType     = FindObjectOfType <PasserType>();
 }
Ejemplo n.º 4
0
    void Start()
    {
        thePasser  = FindObjectOfType <PasserByManager>();
        theCountry = FindObjectOfType <ChangeCountryName>();

        for (int country = 0; country < 5; country++)
        {
            personType[country] = 0;
        }
    }
Ejemplo n.º 5
0
 void Start()
 {
     thePasser = FindObjectOfType <PasserByManager>();
     /* 걸어다니는 속도 250-300사이에서 랜덤으로 설정 */
     speed = Random.Range(250, 301);
 }
Ejemplo n.º 6
0
 void Start()
 {
     thePasser = FindObjectOfType <PasserByManager>();
     theType   = FindObjectOfType <PasserType>();
     speed     = Random.Range(250, 301);
 }