public bool destroyDlgLayer(string layerName)
 {
     if (m_layers.ContainsKey(layerName))
     {
         NvUIDialogLayer layer = m_layers[layerName];
         layer.destroyAllDialogs();
         m_layers.Remove(layerName);
         return(true);
     }
     else
     {
         return(false);
     }
 }
Exemple #2
0
 public void destroyAllDialogs()
 {
     m_owner.destroyAllDialogs();
 }