示例#1
0
文件: Hair.cs 项目: pjbaron/HairToday
 void Update()
 {
     foreach (GameObject go in strands)
     {
         Strand script = go.GetComponent <Strand>();
         script.Grow(Time.deltaTime);
     }
 }