The ultimate Geometry Dash modding framework
Find a file
mat cb5b887172
Merge pull request from dankmeme01/main
c++ exception handler improvements + 64-bit compatibility
2024-01-18 21:33:46 -03:00
.github use android32 and android64 everywhere, for consistency 2024-01-18 17:28:21 -03:00
cmake use android32 and android64 everywhere, for consistency 2024-01-18 17:28:21 -03:00
installer no longer show megahack message on installer 2024-01-02 23:16:28 -03:00
loader Merge pull request from dankmeme01/main 2024-01-18 21:33:46 -03:00
.clang-format
.gitattributes
.gitignore ignore folders start with build- like build-android 2023-12-23 08:44:20 -03:00
CHANGELOG.md
CMakeLists.txt Add 2.204 support () 2024-01-17 14:09:08 -03:00
entry.cpp
EULA
FilesystemImpl.cpp
flash.toml update flash.toml to include handbook assets 2024-01-08 00:04:06 +02:00
LICENSE.txt
README.md Update README.md 2024-01-01 16:19:10 -03:00
title.png
VERSION use android32 and android64 everywhere, for consistency 2024-01-18 17:28:21 -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!