The ultimate Geometry Dash modding framework
Find a file
2024-07-06 19:41:27 -04:00
.github cleanup fix ubuntu libcstd++ 2024-06-28 14:18:28 +03:00
cmake add libunwind for new mods 2024-06-22 17:18:09 -07:00
installer update finnish and swedish installers 2024-07-06 16:30:15 +03:00
loader New image arguments format (#983) 2024-07-06 20:04:25 -03:00
.clang-format some formatting 2022-12-03 15:24:31 +03:00
.gitattributes update .gitattributes 2022-12-31 16:33:53 +03:00
.gitignore fix test mods and version check 2024-04-13 00:56:33 +03:00
CHANGELOG.md update changelog 2024-07-07 00:56:10 +03:00
CMakeLists.txt Update libraries (#971) 2024-06-25 20:13:47 +03:00
entry.cpp add geodeImplicitEntry and geodeCustomEntry 2024-06-08 15:57:50 +03:00
EULA change separator length 2023-08-24 21:16:20 +03:00
flash.toml rename win32 platform to win64, requires latest codegen 2024-06-10 14:18:17 -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 account bases and category, and editor script, reflect basedbuttonsprite changes (minor semver change) 2024-06-30 02:00:30 +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!