Zone Builder:

- Doorways now show the Travel Direction the opposite doorway uses within the pop up tooltip.
 - Doorway tooltips now show the Connected Room information in the doors popup tooltip when loaded.

DoorwayManager:
 - Saves the connected rooms traveldirection within the Doorway now.

MudEngine:
 - Door.ConnectedRoom struct now contains a TravelDirection Field for finding out what travel direction a connected room uses to return back to the original room.
 - GameScript class added within the GameManagement namespace.
This commit is contained in:
Scionwest_cp 2009-12-29 17:06:10 -08:00
parent 968ab21e5a
commit 4f5fd633ba
7 changed files with 72 additions and 7 deletions

View file

@ -15,6 +15,7 @@ namespace MudDesigner.MudEngine.GameObjects.Environment
public string Realm;
public string Zone;
public string Room;
public AvailableTravelDirections TravelDirection;
}
[Category("Door Settings")]