-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
3,511 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# YellowFox-Engine | ||
Friday Night Funkin' but in the funny snake language! | ||
|
||
The yellowfox engine is a friday night funkin' engine developed fully in python using the pygame library. | ||
|
||
It's filesystem was made to be intuitive and easy to add / remove / modify content inside the engine, so feel free to do it. | ||
|
||
The repository itself contains only the source code, if you want the actual working game, go for the releases! | ||
|
||
Shoutout to EndersteveGamer! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import json | ||
|
||
with open('chart.json') as i: | ||
json_data = json.load(i) | ||
|
||
for note in json_data['song']['notes']: | ||
for sectionNote in note['sectionNotes']: | ||
sectionNote[0] += 50 | ||
|
||
out_file = open("chartNew.json", "w") | ||
json.dump(json_data, out_file, indent = 2) | ||
out_file.close() |
Oops, something went wrong.