The ultimate Geometry Dash modding framework
Find a file
2025-04-09 23:35:32 +02:00
.github feat: readd other platforms' workflows 2025-03-15 22:19:04 +01:00
cmake rm commenttypedummy from ios 2025-04-06 21:03:58 +02:00
installer German installer translation () 2024-11-29 09:42:39 +03:00
loader make windows crashlog print more useful information on access violation 2025-04-09 23:35:32 +02:00
.clang-format some formatting 2022-12-03 15:24:31 +03:00
.git-blame-ignore-revs chore: add whitespace change to ignore-revs 2025-03-07 01:57:20 +01: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 4.3.1 2025-03-12 19:16:41 -03:00
CMakeLists.txt feat(ios): use upstream bindings again :3 2025-03-19 13:29:35 +01:00
CODE_OF_CONDUCT.md link geode sdk account in code of conduct 2024-08-09 18:42:39 +03:00
entry.cpp add geodeImplicitEntry and geodeCustomEntry 2024-06-08 15:57:50 +03:00
EULA fix a mispelling () 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 4.3.1 2025-03-12 19:16:41 -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!