예제 #1
0
파일: Hair.cs 프로젝트: pjbaron/HairToday
 void Update()
 {
     foreach (GameObject go in strands)
     {
         Strand script = go.GetComponent <Strand>();
         script.Grow(Time.deltaTime);
     }
 }