Add duty free systems and travel stage updates

This commit is contained in:
jongjae0305
2026-07-09 02:50:48 +09:00
parent 445d74d462
commit 750e9ce0a6
340 changed files with 21825 additions and 1197 deletions
+8 -2
View File
@@ -73,14 +73,20 @@ public static class MapDatabase {
isTutorial = source.isTutorial,
platformSkin = source.platformSkin,
backgroundResourcePath = source.backgroundResourcePath,
backgroundResourcePaths = source.backgroundResourcePaths != null
? (string[]) source.backgroundResourcePaths.Clone()
: null,
backgroundFitScaleMultiplier = source.backgroundFitScaleMultiplier,
backgroundVerticalOffset = source.backgroundVerticalOffset,
finishGateStyle = source.finishGateStyle,
targetDistance = source.targetDistance,
timeLimit = source.timeLimit,
clearMileageReward = source.clearMileageReward,
hasNextMap = source.hasNextMap,
nextMapId = source.nextMapId,
openingSteps = CourseStepFactory.CloneSteps(source.openingSteps),
loopSteps = CourseStepFactory.CloneSteps(source.loopSteps)
courseProfile = CourseProfile.Create(source.GetOpeningSteps(), source.GetLoopSteps()),
openingSteps = source.GetOpeningSteps(),
loopSteps = source.GetLoopSteps()
};
}
}