Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Linux] Feral gamemode support #2473

Open
wants to merge 19 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
98f52a8
add gamemode support on linux
Noobz4Life May 12, 2024
677d63c
Merge branch 'develop' into substate-dispatch-event-fix
lemz1 Sep 22, 2024
8a6dc33
Merge branch 'develop' into fps-setting
lemz1 Sep 22, 2024
01466d2
Remove duplicate import
NotHyper-474 Sep 22, 2024
76d5809
Merge branch 'develop' into substate-dispatch-event-fix
lemz1 Sep 25, 2024
59debd1
Merge branch 'develop' into completion-fix
lemz1 Sep 25, 2024
1bb7874
Merge branch 'develop' into fps-setting
lemz1 Sep 25, 2024
25a64c9
Merge remote-tracking branch 'upstream/develop' into bugfix/chart-sel…
NotHyper-474 Sep 25, 2024
17bd01a
Merge branch 'develop' of https://github.com/FunkinCrew/Funkin into b…
NotHyper-474 Sep 27, 2024
c255f35
fix: Stop allowing inputs after selecting a character
ACrazyTown Sep 20, 2024
78521e6
docs: Added modding docs link in readme
Cartridge-Man Aug 2, 2024
62beaf5
Merge branch 'develop' into substate-dispatch-event-fix
lemz1 Sep 30, 2024
2ef3acf
Merge branch 'develop' into completion-fix
lemz1 Sep 30, 2024
ab89381
Merge branch 'develop' into fps-setting
lemz1 Sep 30, 2024
2fa7cca
Merge pull request #3019 from lemz1/completion-fix
EliteMasterEric Oct 1, 2024
d417faf
Merge pull request #2602 from lemz1/fps-setting
EliteMasterEric Oct 1, 2024
7441c39
Merge pull request #3093 from NotHyper-474/bugfix/chart-selection
EliteMasterEric Oct 1, 2024
d79e7c8
Merge pull request #3138 from lemz1/substate-dispatch-event-fix
EliteMasterEric Oct 1, 2024
37fa702
Merge branch 'develop' into feral-gamemode-support
Noobz4Life Oct 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ To learn how to install the necessary dependencies and compile the game from sou

Please check out our [Contributor's guide](./CONTRIBUTORS.md) on how you can actively participate in the development of Friday Night Funkin'.

# Modding

Feel free to start learning to mod the game by reading our [documentation](https://funkincrew.github.io/funkin-modding-docs/) and guide to modding.

# Credits and Special Thanks

Full credits can be found in-game, or in the `credits.json` file which is located [here](https://github.com/FunkinCrew/funkin.assets/blob/main/exclude/data/credits.json).
Expand Down
8 changes: 8 additions & 0 deletions source/Main.hx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ import openfl.Lib;
import openfl.media.Video;
import openfl.net.NetStream;

// Adds support for FeralGamemode on Linux
#if linux
@:cppInclude('./external/gamemode_client.h')
@:cppFileCode('
#define GAMEMODE_AUTO
')
#end

/**
* The main class which initializes HaxeFlixel and starts the game in its initial state.
*/
Expand Down
Loading
Loading