Skip to content

Commit

Permalink
Initial github source code launch
Browse files Browse the repository at this point in the history
  • Loading branch information
kmrin committed Sep 26, 2023
1 parent 28a6ec5 commit f7e5c44
Show file tree
Hide file tree
Showing 5 changed files with 3,511 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
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!
12 changes: 12 additions & 0 deletions convert.py
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()
Loading

0 comments on commit f7e5c44

Please sign in to comment.