Exemplo n.º 1
0
 void ClearCollectionsForNewRoom()
 {
     roomNavigation.oldclip = _source.clip;
     interactableItems.ClearCollections();
     interactionDescriptionsInRoom.Clear();
     roomNavigation.ClearExits();
 }
 void ClearCollectionsForNewRoom()
 {
     /*Clears the description, items and exits so they can be replaces with the new room's*/
     interactableItems.ClearCollections();
     interactionDescriptionsInRoom.Clear();
     roomNavigation.ClearExits();
 }
Exemplo n.º 3
0
 void ClearCollectionForNewRoom()
 {
     //clear the previous descriptions of the exits in the room
     interactionDescriptionsInRoom.Clear();
     roomNavigation.ClearExits();
     interactableItems.ClearCollections();
 }
Exemplo n.º 4
0
 void ClearCollectionsForNewPlace()
 {
     interactableObjects.ClearCollections();
     interactionDescriptionsInPlace.Clear();
     placeNavigation.ClearExits();
     ClearDisplayImage();
 }
Exemplo n.º 5
0
 void ClearCollectionsForNewRoom()
 {
     //'Clear' all the lists/dictionaries so they can be repopulated with
     //the information stored with the next room
     interactableItems.ClearCollections();
     interactionDescriptionsInRoom.Clear();
     roomNavigation.ClearExits();
 }
Exemplo n.º 6
0
    public void ClearCollectionsForNewRoom()
    {
        //Clears the various lists used for figuring out what's displayed in each room, so that it can be ready to accept new parameters

        interactableItems.ClearCollections();
        interactionDescriptionsInRoom.Clear();
        //interactableItems.responseDictionary.Clear();
        roomNavigation.ClearExits();
    }
Exemplo n.º 7
0
 void ClearCollectionsForNewRoom()
 {
     interactableItems.ClearCollections();
     interactionDescriptionsInRoom.Clear();
     roomNavigation.ClearExits();
 }
Exemplo n.º 8
0
 void ClearForNewRoom()                                                                              // function to clear everything when switching rooms
 {
     interactableItems.ClearCollections();
     interactionDescriptionsInRoom.Clear();                                                                      // clear description list
     roomNavigation.ClearExits();                                                                                // call function to clear exits dictionary
 }
 void ClearCollectionsForNewCommand()
 {
     interactableItems.ClearCollections();
     interactionDescriptions.Clear();
     commandNavigation.ClearExits();
 }
Exemplo n.º 10
0
 void ClearCollectionsForNewRoom()
 {
     interactableItems.ClearCollections();
     interactableDescriptions.Clear();
     navigation.ClearExits();
 }