Skip to content

Commit

Permalink
:godmode:
Browse files Browse the repository at this point in the history
  • Loading branch information
htv04 committed Aug 21, 2021
1 parent 6c10610 commit 4b2c9ab
Show file tree
Hide file tree
Showing 112 changed files with 1,913 additions and 596 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ resources/win64/love/*
# Tools
tools/funkin-json/*
tools/funkin-xml/*
tools/funkin-xna/*

!tools/funkin-json/funkin-json.py
!tools/funkin-xml/funkin-xml.py
!tools/funkin-xna/funkin-xna.py
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ![Logo](images/logo.png)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/HTV04/funkin-rewritten?style=flat-square) ![GitHub all releases](https://img.shields.io/github/downloads/HTV04/funkin-rewritten/total?style=flat-square) ![GitHub issues](https://img.shields.io/github/issues/HTV04/funkin-rewritten?style=flat-square) ![GitHub](https://img.shields.io/github/license/HTV04/funkin-rewritten?style=flat-square) ![Discord](https://img.shields.io/discord/852658576577003550?style=flat-square)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/HTV04/funkin-rewritten?style=flat-square)](https://github.com/HTV04/funkin-rewritten/releases/latest) [![GitHub release (latest SemVer including pre-releases)](https://img.shields.io/github/v/release/HTV04/funkin-rewritten?include_prereleases&style=flat-square)](https://github.com/HTV04/funkin-rewritten/releases) [![GitHub all releases](https://img.shields.io/github/downloads/HTV04/funkin-rewritten/total?style=flat-square)](https://github.com/HTV04/funkin-rewritten/releases) [![GitHub issues](https://img.shields.io/github/issues/HTV04/funkin-rewritten?style=flat-square)](https://github.com/HTV04/funkin-rewritten/issues) [![GitHub](https://img.shields.io/github/license/HTV04/funkin-rewritten?style=flat-square)](https://github.com/HTV04/funkin-rewritten/blob/main/LICENSE) [![Discord](https://img.shields.io/discord/852658576577003550?style=flat-square)](https://discord.gg/tQGzN2Wu48)

Friday Night Funkin' Rewritten is a rewrite of [Friday Night Funkin'](https://ninja-muffin24.itch.io/funkin) built on [LÖVE](https://love2d.org/) and [LÖVE Potion](https://github.com/lovebrew/LovePotion) for Windows, macOS, and Linux, as well as previously unsupported platforms, like the Nintendo Switch!

Expand Down
7 changes: 3 additions & 4 deletions src/love/debug-menu.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ return {
dirTable = love.filesystem.getDirectoryItems(curDir)
end,

enter = function(self)
enter = function(self, previous)
menuID = 1
selection = 3

Expand All @@ -54,8 +54,7 @@ return {
{2}
}

graphics.cancelTimer()
graphics.fade[1] = 0
graphics.setFade(0)
graphics.fadeIn(0.5)
end,

Expand Down Expand Up @@ -84,7 +83,7 @@ return {
overlaySprite = spriteData()

spriteAnims = {}
for i, _ in pairs(sprite.anims) do
for i, _ in pairs(sprite.getAnims()) do
table.insert(spriteAnims, i)
end

Expand Down
267 changes: 267 additions & 0 deletions src/love/fonts/pixel.fnt

Large diffs are not rendered by default.

Binary file added src/love/fonts/pixel_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
267 changes: 267 additions & 0 deletions src/love/fonts/pixel_small.fnt

Large diffs are not rendered by default.

Loading

0 comments on commit 4b2c9ab

Please sign in to comment.