-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMapDict.py
More file actions
76 lines (76 loc) · 4.42 KB
/
MapDict.py
File metadata and controls
76 lines (76 loc) · 4.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
mapdict = {
'AbandonedCableExposure': 'AbandonedCable',
'AbandonedFactoryExposure': 'AbandonedFactory',
'AbandonedSchoolExposure': 'AbandonedSchool',
'abandonfactory2': 'AbandonedFactory2',
'AmericanDinerExposure': 'AmericanDiner',
'AmusementParkExposure': 'AmusementPark',
'AncientTownsExposure': 'AncientTowns',
'Antiquity3DExposure': 'Antiquity3D',
'ApocalypticExposure': 'Apocalyptic',
'ArchVizTinyHouseDayExposure': 'ArchVizTinyHouseDay',
'ArchVizTinyHouseNightExposure': 'ArchVizTinyHouseNight',
'BrushifyMoonExposure': 'BrushifyMoon',
'CarweldingExposure': 'CarWelding',
'CastleFortressExposure': 'CastleFortress',
'coalmine': 'CoalMine',
'ConstructionSite': 'ConstructionSite',
'CountryHouseExposure': 'CountryHouse',
'CyberPunkDowntownExposure': 'CyberPunkDowntown',
'CyberpunkExposure': 'Cyberpunk',
'DesertGasStationExposure': 'DesertGasStation',
'DowntownExposure': 'Downtown',
'EndofTheWorld': 'EndofTheWorld',
'FactoryWeatherExposure': 'FactoryWeather',
'FantasyExposure': 'Fantasy',
'ForestEnvExposure': 'ForestEnv',
'GascolaExposure': 'Gascola',
'GothicIslandExposure': 'GothicIsland',
'GreatMarshExposure': 'GreatMarsh',
'HongKong': 'HongKong',
'HospitalExposure': 'Hospital',
'HouseExposure': 'House',
'HQWesternSaloonExposure': 'HQWesternSaloon',
'IndustrialHangarExposure': 'IndustrialHangar',
'JapaneseAlleyExposure': 'JapaneseAlley',
'JapaneseCityExposure': 'JapaneseCity',
'MiddleEastExposure': 'MiddleEast',
'ModernCityDowntownExposure': 'ModernCityDowntown',
'ModularNeighborhoodExposure': 'ModularNeighborhood',
'ModularNeighborhoodIntExt': 'ModularNeighborhoodIntExt',
'ModUrbanCityExposure': 'ModUrbanCity',
'NordicHarborExposure': 'NordicHarbor',
'OceanExposure': 'Ocean',
'OfficeExposure': 'Office',
'OldBrickHouseDayExposure': 'OldBrickHouseDay',
'OldBrickHouseNightExposure': 'OldBrickHouseNight',
'OldIndustrialCityExposure': 'OldIndustrialCity',
'OldScandinaviaExposure': 'OldScandinavia',
'OldTownFallExposure': 'OldTownFall',
'OldTownNightExposure': 'OldTownNight',
'OldTownSummerExposure': 'OldTownSummer',
'OldTownWinterExposure': 'OldTownWinter',
'PolarSciFiExposure': 'PolarSciFi',
'PrisonExposure': 'Prison',
'RestaurantExposure': 'Restaurant',
'RetroOfficeExposure': 'RetroOffice',
'RomeExposure': 'Rome',
'RuinsExposure': 'Ruins',
'SeasideTownExposure': 'SeasideTown',
'SeasonalForestAutumnExposure': 'SeasonalForestAutumn',
'SeasonalForestSpringExposure': 'SeasonalForestSpring',
'SeasonalForestSummerNightExposure': 'SeasonalForestSummerNight',
'SeasonalForestWinterExposure': 'SeasonalForestWinter',
'SeasonalForestWinterNightExposure': 'SeasonalForestWinterNight',
'SewerageExposure': 'Sewerage',
'ShoreCavesExposure': 'ShoreCaves',
'Slaughter': 'Slaughter',
'SoulCityExposure': 'SoulCity',
'SupermarketExposure': 'Supermarket',
'TerrainBlendingExposure': 'TerrainBlending',
'UrbanConstructionExposure': 'UrbanConstruction',
'VictorianStreetExposure': 'VictorianStreet',
'WaterMillDayExposure': 'WaterMillDay',
'WaterMillNightExposure': 'WaterMillNight',
'WesternDesertTownExposure': 'WesternDesertTown'
}