The ultimate Geometry Dash modding framework
Find a file
mat efdde0af87
Some checks failed
Build Binaries / Build Windows (push) Has been cancelled
Build Binaries / Build macOS (push) Has been cancelled
Build Binaries / Build Android (64-bit) (push) Has been cancelled
Build Binaries / Build Android (32-bit) (push) Has been cancelled
Build Binaries / Build iOS (push) Has been cancelled
Build Binaries / Publish (push) Has been cancelled
fix crashlogWindow.cpp
:|
2025-08-28 19:51:15 -03:00
.github add iOS as a platform 2025-07-12 12:10:25 -04:00
cmake fix GEODE_TARGET_PLATFORM in parent scope 2025-06-16 18:56:43 +03:00
installer fix(linux install script): flatpak directory (#1441) 2025-08-15 02:35:27 -07:00
loader fix crashlogWindow.cpp 2025-08-28 19:51:15 -03:00
.clang-format some formatting 2022-12-03 15:24:31 +03:00
.editorconfig add editorconfig to trim trailing whitespaces 2025-05-23 16:02:53 -03:00
.git-blame-ignore-revs add previous commit to blame ignore file 2025-05-23 16:28:39 -03:00
.gitattributes update .gitattributes 2022-12-31 16:33:53 +03:00
.gitignore chore: Visual Studio'd 2025-01-17 19:28:42 +02:00
CHANGELOG.md update changelog 2025-08-27 23:37:22 +03:00
CMakeLists.txt bump TulipHook to 3.1.4 2025-07-24 19:19:16 +00:00
CODE_OF_CONDUCT.md link geode sdk account in code of conduct 2024-08-09 18:42:39 +03:00
CONTRIBUTING.md chore(CONTRIBUTING): add a link to bindings repo 2025-04-22 16:08:13 +03:00
entry.cpp add geodeImplicitEntry and geodeCustomEntry 2024-06-08 15:57:50 +03:00
EULA fix a mispelling (#1203) 2024-12-28 07:04:20 -07:00
flash.toml use new flash features 2025-02-23 22:02:37 -03:00
LICENSE.txt added clang-format 2022-10-30 21:24:06 +03:00
README.md Update README.md 2024-01-01 16:19:10 -03:00
title.png add title.png 2023-01-24 11:32:31 +02:00
VERSION update changelog and version 2025-08-27 22:53:53 +03:00

Home page

Geode is a Geometry Dash mod loader and modding SDK with a modern approach towards mod development.

Why Geode?

Unlike previous mod loaders, which merely inject the DLLs and let devs handle the rest, Geode aims to be a more comprehensive project that provides all the tools needed for creating mods in one package.

Geode's goal is to solve mod incompatibility - to ensure that mods work together without buttons getting misplaced or hooks mysteriously disappearing.

"Hello World!" Example

Here's a Hello World mod in Geode:

#include <Geode/Bindings.hpp>
#include <Geode/modify/MenuLayer.hpp>

using namespace geode::prelude;

class $modify(MenuLayer) {
	void onMoreGames(CCObject*) {
		FLAlertLayer::create(
			"Geode",
			"Hello World from my Custom Mod!",
			"OK"
		)->show();
	}
};

This code modifies what happens when the "More Games" button is clicked on the home scene in Geometry Dash, showing a custom popup.

Documentation

Detailed documentation, tutorials, and installation instructions on using Geode can be found here.

New to modding GD? Geode's documentation also comes with a handy tutorial book that explains all the basics of GD modding!

Contribution

You can contribute to Geode by opening a Pull Request! Please follow the contribution guidelines.

Questions, help, etc.

If you have any further questions, need help, or just want to share your love for catgirls, be sure to join our Discord server!