The ultimate Geometry Dash modding framework
Find a file
Chloe 575c982b5b
bump breakpad to latest commit
this supposedly fixes a bug. i'm not sure what bug it fixed but there's certainly a bug and this fixes it
2025-03-16 01:33:02 -07:00
.github Revert "disable macos build for now" 2024-11-12 23:47:25 -03:00
cmake Include PDB files if GEODE_BUNDLE_PDB is specified () 2025-01-17 18:12:36 -07:00
installer German installer translation () 2024-11-29 09:42:39 +03:00
loader bump breakpad to latest commit 2025-03-16 01:33:02 -07:00
.clang-format some formatting 2022-12-03 15:24:31 +03:00
.git-blame-ignore-revs add blame ignore file 2025-02-23 22:02:17 -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 4.3.1 2025-03-12 19:16:41 -03:00
CMakeLists.txt update fmt to 11.1.4, fixes clang 20 2025-03-08 17:49:06 -03: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!