Ejemplo n.º 1
0
 public static void VUIObjectsUpdate(bool StartObject)
 {
     ActiveObjects.Clear();
     foreach (var O in VUIObjects)
     {
         if (O.Value["Active"] == "true")
         {
             ActiveObjects.Add(O.Key);
         }
     }
     Count = ActiveObjects.Count - 1;
     if (StartObject == true)
     {
         Section = 0;
     }
 }