示例#1
0
 // Update is called once per frame
 void Update()
 {
     if (this.moveMap)
     {
         for (int i = 0; i < this.activeMaps.Count; i++)
         {
             BasicMap map = this.activeMaps[i];
             map.PerformUpdate();
         }
     }
 }