Skip to content

Commit

Permalink
update program file
Browse files Browse the repository at this point in the history
  • Loading branch information
BobbyDrawz authored Jul 15, 2024
1 parent 998e0e1 commit 1a9c185
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/FMM/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,16 +120,16 @@ private static void Main(string[] args)

string notesFilePath = Path.Combine(outputDirectory, "notes.json");
File.WriteAllText(notesFilePath, songJson.ToString(Formatting.Indented));
Console.WriteLine($"Generated base note chart at {notesFilePath}");
Console.WriteLine("---Generated base note chart.---");

FunkinCam.GenerateCameraFile(midiEvents, bpm, Path.Combine(outputDirectory, "camera.txt"));
string cameraFilePath = Path.Combine(outputDirectory, "camera.txt");
Console.WriteLine($"Generated camera text file at {cameraFilePath}");
Console.WriteLine("---Generated camera text file.---");

// Combine files to create chart.json
NoteCameraCombiner.CombineFiles(notesFilePath, cameraFilePath, Path.Combine(outputDirectory, "chart.json"));
string chartFilePath = Path.Combine(outputDirectory, "chart.json");
Console.WriteLine($"Combined files to produce chart.json at {chartFilePath}");
Console.WriteLine("---Combined files to produce chart.json.---");

// Ask if the user wants to delete remnants
while (true)
Expand Down

0 comments on commit 1a9c185

Please sign in to comment.