Files
Travel_Run/Assets/Scripts/Maps/Definitions/TutorialIncheonMap.cs
T
2026-07-09 02:50:48 +09:00

29 lines
1.4 KiB
C#

public static class TutorialIncheonMap {
public static MapDefinition Create() {
return new MapDefinition {
mapId = MapId.TutorialIncheon,
displayName = "Tutorial / Incheon",
routeName = "인천공항 출발 준비",
isTutorial = true,
platformSkin = Platform.PlatformSkin.Airport,
backgroundResourcePath = "StageBackgrounds/Incheon/Stage_Incheon_DarkLower_Segment_01_CheckInHall",
backgroundResourcePaths = new string[] {
"StageBackgrounds/Incheon/Stage_Incheon_DarkLower_Segment_01_CheckInHall",
"StageBackgrounds/Incheon/Stage_Incheon_DarkLower_Segment_02_DepartureSecurity",
"StageBackgrounds/Incheon/Stage_Incheon_DarkLower_Segment_03_DutyFreeConcourse",
"StageBackgrounds/Incheon/Stage_Incheon_DarkLower_Segment_04_MovingWalkwayWindows",
"StageBackgrounds/Incheon/Stage_Incheon_DarkLower_Segment_05_BoardingGate"
},
backgroundFitScaleMultiplier = 1f,
backgroundVerticalOffset = 0f,
finishGateStyle = FinishGateStyle.AirportDeparture,
targetDistance = 380f,
timeLimit = 85f,
clearMileageReward = 150,
hasNextMap = true,
nextMapId = MapId.Japan,
courseProfile = TutorialCourseProfile.Create()
};
}
}