Class MapZoneUtilities
Contains some utility functions related to Map Zones
Namespace: WeaverCore.Utilities
Assembly: WeaverCore.dll
Syntax
public static class MapZoneUtilities
Methods
| Edit this page View SourceGetAllMapZones(out int[], out string[])
Gets a list of all the map zones in the game (including custom ones)
Declaration
public static void GetAllMapZones(out int[] mapZoneIndexes, out string[] mapZoneNames)
Parameters
Type | Name | Description |
---|---|---|
int[] | mapZoneIndexes | The ID of each of the map zones. These also serve as indexes within the MapZone enum, and can be casted to a MapZone |
string[] | mapZoneNames | The internal names of each map zone. |
GetCustomMapZones()
Gets a list of all the custom map zones
Declaration
public static List<CustomMapZone> GetCustomMapZones()
Returns
Type | Description |
---|---|
List<CustomMapZone> | Returns a list of all the custom map zones |