// Update is called once per frame
 void Update()
 {
     currSector.Update();
     for (int i = 0; i < sectorObjects.Count; i++)
     {
         sectorObjects[i].transform.position = currSector.sectorObjects[i].position * 0.1f;
     }
 }