private void Awake()
 {
     if (logoDisplay == null)
     {
         logoDisplay = GetComponent <LayeredColoredSpriteDisplay>();
         if (logoDisplay == null)
         {
             Debug.LogError("Part Manufacturer Display couldn't find LogoDisplay on " + gameObject.name);
         }
     }
 }